GET
/
assistants
PINECONE_API_KEY="YOUR_API_KEY"

curl -X GET "https://api.pinecone.io/assistant/assistants" \
  -H "Api-Key: $PINECONE_API_KEY" \
  -H "X-Pinecone-Api-Version: 2025-10"
{
  "assistants": [
    {
      "name": "example-assistant",
      "instructions": "<string>",
      "metadata": {},
      "status": "Initializing",
      "host": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ]
}
PINECONE_API_KEY="YOUR_API_KEY"

curl -X GET "https://api.pinecone.io/assistant/assistants" \
  -H "Api-Key: $PINECONE_API_KEY" \
  -H "X-Pinecone-Api-Version: 2025-10"

Authorizations

Api-Key
string
header
required

Pinecone API Key

Response

200
application/json

List all assistants in a project.

The list of assistants that exist in the project.