{ "opencollection": "1.0.0", "info": { "name": "Pinecone Admin API Keys API", "version": "2025-10" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "API Keys", "type": "folder" }, "items": [ { "info": { "name": "List API keys", "type": "http" }, "http": { "method": "GET", "url": "https://api.pinecone.io/admin/projects/:project_id/api-keys", "headers": [ { "name": "X-Pinecone-Api-Version", "value": "" } ], "params": [ { "name": "project_id", "value": "", "type": "path", "description": "Project ID" } ] }, "docs": "List all API keys in a project." }, { "info": { "name": "Create an API key", "type": "http" }, "http": { "method": "POST", "url": "https://api.pinecone.io/admin/projects/:project_id/api-keys", "headers": [ { "name": "X-Pinecone-Api-Version", "value": "" } ], "params": [ { "name": "project_id", "value": "", "type": "path", "description": "Project ID" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Create a new API key for a project. Developers can use the API key to authenticate requests to Pinecone's Data Plane and Control Plane APIs.\n" }, { "info": { "name": "Get API key details", "type": "http" }, "http": { "method": "GET", "url": "https://api.pinecone.io/admin/api-keys/:api_key_id", "headers": [ { "name": "X-Pinecone-Api-Version", "value": "" } ], "params": [ { "name": "api_key_id", "value": "", "type": "path", "description": "API key ID" } ] }, "docs": "Get the details of an API key, excluding the API key secret." }, { "info": { "name": "Update an API key", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.pinecone.io/admin/api-keys/:api_key_id", "headers": [ { "name": "X-Pinecone-Api-Version", "value": "" } ], "params": [ { "name": "api_key_id", "value": "", "type": "path", "description": "API key ID" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update the name and roles of an API key.\n" }, { "info": { "name": "Delete an API key", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.pinecone.io/admin/api-keys/:api_key_id", "headers": [ { "name": "X-Pinecone-Api-Version", "value": "" } ], "params": [ { "name": "api_key_id", "value": "", "type": "path", "description": "API key ID" } ] }, "docs": "Delete an API key from a project." } ] } ], "bundled": true }