Authorizations
An access token must be provided in the Authorization header using the Bearer scheme.
Response
A list of 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"
}
]
}
List all projects in an organization.
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"
}
]
}
An access token must be provided in the Authorization header using the Bearer scheme.
A list of projects.
Show child attributes
Was this page helpful?