Pinecone · Example Payload

Pinecone Get Assistant Example

Vector DatabasesAIEmbeddingsRAG

Pinecone Get Assistant Example is an example object payload from Pinecone, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "get_assistant",
  "method": "GET",
  "path": "/assistants/{assistant_name}",
  "summary": "Check assistant status",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "401",
      "contentType": "application/json",
      "name": "unauthorized",
      "example": {
        "error": {
          "code": "UNAUTHENTICATED",
          "message": "Invalid API key."
        },
        "status": 401
      }
    },
    {
      "status": "404",
      "contentType": "application/json",
      "name": "assistant-not-found",
      "example": {
        "error": {
          "code": "NOT_FOUND",
          "message": "Assistant \"example-assistant\" not found."
        },
        "status": 404
      }
    },
    {
      "status": "500",
      "contentType": "application/json",
      "name": "internal-server-error",
      "example": {
        "error": {
          "code": "UNKNOWN",
          "message": "Internal server error"
        },
        "status": 500
      }
    }
  ]
}