Skip to main content
GET
/
utils
/
context-packs
List context packs
curl --request GET \
  --url https://api.example.com/utils/context-packs \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "organization_id": "<string>",
      "project_id": "<string>",
      "name": "<string>",
      "version": 123,
      "summary_version": 123,
      "key_topics": [
        "<string>"
      ],
      "topic_distribution": {},
      "meta_data": {},
      "config": {},
      "created_by": "<string>",
      "updated_by": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "description": "<string>",
      "summary_text": "<string>",
      "archived_at": "2023-11-07T05:31:56Z",
      "deprecated_at": "2023-11-07T05:31:56Z",
      "deleted_at": "2023-11-07T05:31:56Z",
      "reactivated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "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 | null

Query Parameters

status
enum<string> | null

Filter by status Status of a context pack.

Available options:
active,
archived,
deprecated,
deleted
pack_type
enum<string> | null

Filter by pack type Type of context pack.

Available options:
user,
team,
project,
domain,
session,
data_source
page
integer
default:1

Page number

Required range: x >= 1
page_size
integer
default:20

Page size

Required range: 1 <= x <= 100

Response

Successful Response

Response model for listing context packs.

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

Pagination metadata for list responses.