Skip to main content

ChunkSearchResponse

Response schema for chunk-based vector search.

results object[]required

List of matching chunks

  • Array [
  • idId (string)required

    Qdrant point ID

    scoreScore (number)required

    Similarity score (0.0 to 1.0)

    chunk_text object

    Text content of the chunk

    anyOf
    string
    metadata object

    Chunk metadata (dataset_id, entry_id, chunk_index, etc.)

    property name*any

    Chunk metadata (dataset_id, entry_id, chunk_index, etc.)

  • ]
  • totalTotal (integer)required

    Total number of results returned

    query_info object

    Query metadata (filters applied, execution time, etc.)

    property name*any

    Query metadata (filters applied, execution time, etc.)

    ChunkSearchResponse
    {
    "results": [
    {
    "id": "string",
    "score": 0,
    "chunk_text": "string",
    "metadata": {}
    }
    ],
    "total": 0,
    "query_info": {}
    }