> 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/{callFlowId}

콜 플로우 하나의 정보를 반환합니다. 계정이 소유하지 않은 ID는 404입니다.

목록과 달리 **블럭 구성(`graph`)을 함께** 반환합니다. 이 값을 그대로 고쳐 `PUT`/`PATCH`로
돌려보내는 왕복 편집이 성립합니다.

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

## Authentication

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

## Request

### Path parameters

- `accountId` (string, required) — 계정 ID
- `callFlowId` (string, required) — 콜 플로우 ID

## Response

### 200

조회 성공

- `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)
- `graph` (object, optional, nullable) — 블럭 구성. 저장된 그래프가 현재 스키마로 읽히지 않으면(콘솔이 아닌 경로로 손댄 아주 오래된 플로우) `null`입니다 — 이름·연결된 번호는 그대로 유효하며, 이 경우 `PUT`으로 그래프 전체를 다시 올려 고칠 수 있습니다.
  - `version` (enum, required)
    - Allowed values: `1`
  - `start` (string, required) — 시작 블럭 id
  - `nodes` (map from string to object, required) — 블럭 id → 블럭
    - `type` (enum, required) — 블럭 종류
      - Allowed values: `say`, `play`, `pause`, `message`, `menu`, `record`, `dial`, `hangup`, `setvar`, `condition`, `http`, `optout`
  - `voice` (object, optional) — 플로우 전역 음성. 이 플로우의 모든 멘트를 이 목소리가 읽습니다. 생략하면 기본(무료) 음성입니다. `google`은 무료이고 `cartesia`·`elevenlabs`는 유료입니다. 다른 조직이 등록한 복제 음성 id는 403(`call_flow_voice_forbidden`)으로 거절합니다.
    - `provider` (enum, required) — TTS 공급자
      - Allowed values: `google`, `cartesia`, `elevenlabs`
    - `voiceId` (string, optional) — 유료 공급자의 음성 id (cartesia=카탈로그 UUID · elevenlabs=20자 영숫자)
    - `model` (string, optional) — 공급자 모델. **ElevenLabs 전용** — 다른 공급자에 붙이면 400입니다.
    - `language` (string, optional) — 언어 코드. 요청에서 생략하면 `ko`로 채워집니다.
    - `controls` (object, optional) — 음색 튜닝. 공급자가 지원하지 않는 값은 통화에 태우지 않고 저장만 합니다.
      - `speed` (double, optional)
      - `volume` (double, optional)

## Examples

**Response**

```json
{
  "callFlowId": "cmryw3ycm000001s6on0kp9a8",
  "name": "고객센터 ARS",
  "phoneNumbers": [
    "07052753864"
  ],
  "variables": [
    "name"
  ],
  "dateCreated": "2026-07-24T09:12:33.000Z",
  "dateUpdated": "2026-07-27T01:40:11.000Z",
  "graph": {
    "version": 1,
    "start": "greeting",
    "nodes": {
      "bye": {
        "type": "hangup",
        "message": "이용해 주셔서 감사합니다."
      },
      "greeting": {
        "type": "say",
        "next": "bye",
        "text": "안녕하세요, 클로옵스입니다."
      }
    },
    "voice": {
      "provider": "google",
      "language": "ko"
    }
  }
}
```

**SDK Code**

```python
import requests

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

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/cmryw3ycm000001s6on0kp9a8';
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/cmryw3ycm000001s6on0kp9a8"

	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/cmryw3ycm000001s6on0kp9a8")

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/cmryw3ycm000001s6on0kp9a8")
  .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/cmryw3ycm000001s6on0kp9a8', [
  'headers' => [
    'Authorization' => 'Bearer <token>',
  ],
]);

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

```csharp
using RestSharp;

var client = new RestClient("https://api.claw-ops.com/v1/accounts/AC1a2b3c4d/call-flows/cmryw3ycm000001s6on0kp9a8");
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/cmryw3ycm000001s6on0kp9a8")! 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()
```