v1

latestOpenAPI 3.0.3Apache 2.02026-07-2685172326.0 KB
Manage Assistants

List assistants

List of all assistants in a project.

For guidance and examples, see Manage assistants.

get/assistants

Query parameters

limitinteger

Limit on the number of assistants to return. Default is 50. Minimum is 1. Maximum is 100.

pagination_tokenstring

Pagination token to continue a previous listing operation.

Headers

X-Pinecone-Api-Versionstring required

Required date-based version header

Response

List all assistants in a project.

Example response

{
  "assistants": [
    {
      "name": "example-assistant",
      "instructions": "Answer questions with clear, helpful answers. Keep the tone friendly and easy to follow.",
      "metadata": {
        "role": "Customer Support Helper",
        "team": "Operations"
      },
      "host": "https://prod-1-data.ke.pinecone.io",
      "created_at": "2025-10-01T12:30:00.000Z",
      "updated_at": "2025-10-01T12:45:00.000Z"
    }
  ],
  "pagination": {
    "next": "dXNlcl9pZD11c2VyXzE="
  }
}