curl -X GET "https://api.pinecone.io/admin/projects" \
-H "Authorization: Bearer $PINECONE_ACCESS_TOKEN" \
-H "X-Pinecone-Api-Version: 2025-10"
{
"data": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "example-project",
"max_pods": 0,
"force_encryption_with_cmek": true,
"organization_id": "<string>",
"created_at": "2023-11-07T05:31:56Z"
}
]
}
List all projects in an organization.
curl -X GET "https://api.pinecone.io/admin/projects" \
-H "Authorization: Bearer $PINECONE_ACCESS_TOKEN" \
-H "X-Pinecone-Api-Version: 2025-10"
{
"data": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "example-project",
"max_pods": 0,
"force_encryption_with_cmek": true,
"organization_id": "<string>",
"created_at": "2023-11-07T05:31:56Z"
}
]
}
curl -X GET "https://api.pinecone.io/admin/projects" \
-H "Authorization: Bearer $PINECONE_ACCESS_TOKEN" \
-H "X-Pinecone-Api-Version: 2025-10"
{
"data": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "example-project",
"max_pods": 0,
"force_encryption_with_cmek": true,
"organization_id": "<string>",
"created_at": "2023-11-07T05:31:56Z"
}
]
}
An access token must be provided in the Authorization header using the Bearer scheme.
Required date-based version header
A list of projects.
Show child attributes
The unique ID of the project.
The name of the project.
1 - 512The maximum number of Pods that can be created in the project.
Whether to force encryption with a customer-managed encryption key (CMEK).
The unique ID of the organization that the project belongs to.
The date and time when the project was created.
Was this page helpful?