APIs
Errors
Pinecone uses conventional HTTP response codes to indicate the success or failure of an API request. In general, codes in the 2xx
range indicate success, codes in the 4xx
range indicate an error that failed given the information provided, and codes in the 5xx
range indicate an error with Pinecone’s servers.
HTTP status code | Description |
---|---|
200 - OK | The request was successful. |
201 - CREATED | The request was successful and a new resource was created. |
202 - NO CONTENT | The request was successful, but there is no content to return. |
400 - INVALID ARGUMENT | The request was unsuccessful due to an invalid argument. |
401 - UNAUTHENTICATED | The API key is missing or invalid. |
403 - QUOTA_EXCEEDED | The request was unsuccessful due to an exceeded quota. |
404 - NOT FOUND | The request was unsuccessful because the resource was not found. |
409 - ALREADY EXISTS | The request was unsuccessful because the resource already exists. |
412 - FAILED PRECONDITIONS | The request was unsuccessful due to preconditions not being met. |
422 - UNPROCESSABLE ENTITY | The request was unsuccessful because the server was unable to process the contained instructions. |
429 - TOO MANY REQUESTS | The request was rate-limited. |
500 - UNKNOWN | An internal server error occurred. |
Was this page helpful?