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"
}
]
}
List all projects in an organization.
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"
}
]
}
An access token must be provided in the Authorization
header using the Bearer
scheme.
A list of projects.
The response is of type object
.
Was this page helpful?