Skip to main content
GET
/
talk2data
/
chat
/
sessions
/
{session_id}
/
artifacts
List session artifacts
curl --request GET \
  --url https://api.example.com/talk2data/chat/sessions/{session_id}/artifacts \
  --header 'Authorization: Bearer <token>' \
  --header 'x-project-id: <x-project-id>'
{
  "data": [
    {
      "resource_uri": "<string>",
      "artifact_type": "<string>",
      "artifact_title": "<string>",
      "artifact_description": "<string>",
      "metadata": {},
      "created_at": ""
    }
  ],
  "pagination": {
    "page": 2,
    "limit": 50,
    "total_items": 1,
    "total_pages": 1,
    "next_page": 123,
    "prev_page": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.emergence.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Headers

x-project-id
string
required

Project identifier

Path Parameters

session_id
string
required

Session ID

Query Parameters

page
integer
default:1

Page number (starts at 1)

Required range: x >= 1
limit
integer
default:50

Artifacts per page

Required range: 1 <= x <= 100
artifact_type
string | null

Filter by type: parquet, chart. Omit for all.

Response

Successful Response

Paginated list of artifacts (GET /api/chat/sessions/{session_id}/artifacts).

data
GeneratedArtifactRef · object[]
required
pagination
Pagination · object
required

Pagination metadata for list responses.