Embed QuerioEmbedded API

Get an asset

GET
/v2/embed/{customer_slug}/conversations/{conversationId}/assets/{cellId}

Authorization

bearerAuth
AuthorizationBearer <token>

Include your API token in the Authorization header:

Authorization: Bearer <token>

Tokens are created in the Querio workspace settings under Embedded > API Tokens.

In: header

Path Parameters

customer_slug*string

Customer slug that maps to a workspace and agent configuration.

conversationId*string

Conversation identifier.

Formatuuid
cellId*string

Asset identifier from a data-table or data-chart message part.

Query Parameters

page?integer

1-indexed page number for table assets.

Range1 <= value
Default1
pageSize?integer

Rows per page for table assets.

Range1 <= value <= 100
Default20
query?string

Free-text search across all columns for table assets.

sort?string

JSON array of sort directives for table assets.

filters?string

JSON array of filter conditions for table assets.

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v2/embed/dunder-mifflin/conversations/38770bb6-b14b-405c-aed6-71e8849c77dc/assets/orders-sample"

{  "columns": [    {      "name": "order_id",      "type": "string",      "dtype": "object"    },    {      "name": "quantity",      "type": "integer",      "dtype": "int64"    },    {      "name": "post_discount_revenue",      "type": "number",      "dtype": "float64"    }  ],  "rows": [    {      "order_id": "0039d92b-9259-4a68-b1b8-944e76c955bb",      "quantity": 130,      "post_discount_revenue": 3250    }  ],  "page": 1,  "pageSize": 20,  "totalRows": 100,  "totalColumns": 3}

{  "error": "invalid_page",  "message": "Requested page exceeds total pages"}

{  "error": "Missing or invalid Authorization header",  "message": "No Bearer token or invalid token"}

{  "error": "Token does not have access to this consumer",  "message": "Token workspace does not match consumer"}
{  "error": "not_found",  "message": "Conversation or asset not found"}

Last updated on July 13, 2026