Skip to main content
GET
/
admin
/
projects
PINECONE_ACCESS_TOKEN="YOUR_ACCESS_TOKEN"

curl -X GET "https://api.pinecone.io/admin/projects" \
     -H "Authorization: Bearer $PINECONE_ACCESS_TOKEN" \
     -H "X-Pinecone-Api-Version: 2025-04"
{
  "data": [
    {
      "id": "32c8235a-5220-4a80-a9f1-69c24109e6f2",
      "name": "example-project",
      "max_pods": 20,
      "force_encryption_with_cmek": false,
      "organization_id": "-NM7af6f234168c4e44a",
      "created_at": "2025-10-20T20:16:09.144497Z"
    }
    {
      "id": "f060b981-6e6e-48a8-9f82-63b9610cc139",
      "name": "example-project-2",
      "max_pods": 20,
      "force_encryption_with_cmek": false,
      "organization_id": "-NM7af6f234168c4e44a",
      "created_at": "2025-07-01T13:45:00.357928Z"
    }
  ]
}
PINECONE_ACCESS_TOKEN="YOUR_ACCESS_TOKEN"

curl -X GET "https://api.pinecone.io/admin/projects" \
     -H "Authorization: Bearer $PINECONE_ACCESS_TOKEN" \
     -H "X-Pinecone-Api-Version: 2025-04"
{
  "data": [
    {
      "id": "32c8235a-5220-4a80-a9f1-69c24109e6f2",
      "name": "example-project",
      "max_pods": 20,
      "force_encryption_with_cmek": false,
      "organization_id": "-NM7af6f234168c4e44a",
      "created_at": "2025-10-20T20:16:09.144497Z"
    }
    {
      "id": "f060b981-6e6e-48a8-9f82-63b9610cc139",
      "name": "example-project-2",
      "max_pods": 20,
      "force_encryption_with_cmek": false,
      "organization_id": "-NM7af6f234168c4e44a",
      "created_at": "2025-07-01T13:45:00.357928Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

A list of projects.

data
object[]