> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.claw-ops.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.claw-ops.com/_mcp/server.

# 콜 플로우 목록 조회

GET https://api.claw-ops.com/v1/accounts/{accountId}/call-flows

계정의 콜 플로우(결정적 ARS) 목록을 최신순으로 반환합니다.

여기서 얻은 `callFlowId`를 다음 두 곳에 사용합니다.

* **발신**: `POST /v1/accounts/{accountId}/calls`의 `CallFlowId`
* **착신**: `PATCH /v1/accounts/{accountId}/numbers/{number}`의 `routingType=callflow` + `callFlowId`

플로우의 블럭 구성(그래프)은 반환하지 않습니다 — 플로우 하나가 수십 KB라 목록에 싣지
않습니다. 그래프가 필요하면 단건 조회(`GET .../call-flows/{callFlowId}`)를 씁니다.

Reference: https://docs.claw-ops.com/api-레퍼런스/claw-ops-api/call-flows/list-call-flows

## Authentication

- `Authorization` header (bearer token, required) — API Key를 Bearer 토큰으로 전달

## Request

### Path parameters

- `accountId` (string, required) — 계정 ID

## Response

### 200

조회 성공

- `data` (list of object, optional)
  - `callFlowId` (string, optional) — 콜 플로우 ID. createCall의 CallFlowId, 번호 라우팅의 callFlowId에 그대로 사용합니다.
  - `name` (string, optional) — 콜 플로우 이름
  - `phoneNumbers` (list of string, optional) — 이 플로우로 인입되는 번호 목록(routingType=callflow). 아웃바운드 전용이면 빈 배열입니다.
  - `variables` (list of string, optional) — 발신 시 createCall의 Variables로 **넣어야 하는** 변수 이름들. 그래프가 `{{이름}}`으로 참조하지만 통화 중에는 만들어지지 않는 값입니다(누른 키·HTTP 응답·녹음 결과처럼 통화가 만들어내는 변수는 제외). 채우지 않으면 그 자리는 빈 문자열로 나갑니다.
  - `dateCreated` (datetime, optional)
  - `dateUpdated` (datetime, optional)

## Examples

**Response**

```json
{
  "data": [
    {
      "callFlowId": "cmryw3ycm000001s6on0kp9a8",
      "name": "고객센터 ARS",
      "phoneNumbers": [
        "07052753864"
      ],
      "variables": [
        "name"
      ],
      "dateCreated": "2026-07-24T09:12:33.000Z",
      "dateUpdated": "2026-07-27T01:40:11.000Z"
    }
  ]
}
```

**SDK Code**

```python
import requests

url = "https://api.claw-ops.com/v1/accounts/AC1a2b3c4d/call-flows"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.json())
```

```javascript
const url = 'https://api.claw-ops.com/v1/accounts/AC1a2b3c4d/call-flows';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://api.claw-ops.com/v1/accounts/AC1a2b3c4d/call-flows"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("Authorization", "Bearer <token>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby
require 'uri'
require 'net/http'

url = URI("https://api.claw-ops.com/v1/accounts/AC1a2b3c4d/call-flows")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
```

```java
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://api.claw-ops.com/v1/accounts/AC1a2b3c4d/call-flows")
  .header("Authorization", "Bearer <token>")
  .asString();
```

```php
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://api.claw-ops.com/v1/accounts/AC1a2b3c4d/call-flows', [
  'headers' => [
    'Authorization' => 'Bearer <token>',
  ],
]);

echo $response->getBody();
```

```csharp
using RestSharp;

var client = new RestClient("https://api.claw-ops.com/v1/accounts/AC1a2b3c4d/call-flows");
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <token>");
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let headers = ["Authorization": "Bearer <token>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://api.claw-ops.com/v1/accounts/AC1a2b3c4d/call-flows")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```