GET
/
assistant
/
assistants
from pinecone import Pinecone
pc = Pinecone(api_key="YOUR_API_KEY")

assistants = pc.assistant.list_assistants()
{
  "assistants": [
    {
      "name": "example-assistant",
      "metadata": {},
      "status": "Initializing",
      "created_on": "2023-11-07T05:31:56Z",
      "updated_on": "2023-11-07T05:31:56Z"
    }
  ]
}

This feature is in public beta and is not recommended for production usage. Join the beta waitlist and review the preview terms for more details.

from pinecone import Pinecone
pc = Pinecone(api_key="YOUR_API_KEY")

assistants = pc.assistant.list_assistants()

Authorizations

Api-Key
string
headerrequired

Pinecone API Key

Response

200 - application/json
assistants
object[]