GET
/
admin
/
projects
curl --request GET "https://api.pinecone.io/admin/projects" \
    -H "Authorization: Bearer $PINECONE_ACCESS_TOKEN" \
    -H "X-Pinecone-Api-Version: 2025-04"
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "example-project",
      "max_pods": 123,
      "force_encryption_with_cmek": true,
      "organization_id": "<string>",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ]
}
curl --request GET "https://api.pinecone.io/admin/projects" \
    -H "Authorization: Bearer $PINECONE_ACCESS_TOKEN" \
    -H "X-Pinecone-Api-Version: 2025-04"
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "example-project",
      "max_pods": 123,
      "force_encryption_with_cmek": true,
      "organization_id": "<string>",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

An access token must be provided in the Authorization header using the Bearer scheme.

Response

200
application/json
A list of projects.
data
object[]

The details of a project.