GET
/
v1
/
rag42
/
collections
/
{collection_id}
/
documents
/
{document_id}
/
chunks
/
{chunk_id}
청크 조회
curl --request GET \
  --url https://api.clovastudio.go.kr/v1/rag42/collections/{collection_id}/documents/{document_id}/chunks/{chunk_id} \
  --header 'Authorization: Bearer <token>'
{
  "status": {
    "code": "20000",
    "message": "OK"
  },
  "result": {
    "chunk_id": "a1b2c3d4e5f6789012345678901234ab",
    "title": "A",
    "content": "<title-0>\nLlion Jones∗ Aidan N. Gomez∗ † Łukasz Kaiser∗ Google Research University of Toronto Google Brain",
    "order": 3,
    "metadata": {
      "start_page": 1,
      "end_page": 1
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

CSG-TENANT-ID
string | null

Clova Studio Gov 테넌트 ID

X-CSG-TENANT-ID
string | null

Clova Studio Gov 테넌트 ID (레거시)

Path Parameters

collection_id
string
required

컬렉션 ID (프로젝트 ID)

Examples:

"ef7483af16d84818a59dcbcf8b587b93"

document_id
string
required

문서 ID

Examples:

"ed5754eec78e4e0783ce075549ccadaa"

chunk_id
string
required

청크 ID

Examples:

"a1b2c3d4e5f6789012345678901234ab"

Response

청크 조회 성공

개별 청크 조회 응답

status
object
required

응답 상태

result
object
required

청크 상세 정보