Skip to main content
GET
/
app
/
v1
/
organizations
/
{organizationId}
/
projects
/
{projectId}
/
api-keys
List API Keys
curl --request GET \
  --url https://api.example.com/app/v1/organizations/{organizationId}/projects/{projectId}/api-keys

Documentation Index

Fetch the complete documentation index at: https://docs.metabind.ai/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

organizationId
string
required
Organization ID
projectId
string
required
Project ID

Query Parameters

status
string
Filter by status: active or revoked
limit
number
Items per page (default: 20)
lastKey
string
Pagination cursor from previous response

Response

Returns a paginated list of API Key objects (without key values).
{
  "data": [
    {
      "id": "afd8012b-d81e-41c6-92cd-eed0c6cb3676",
      "name": "iOS Production App",
      "status": "active",
      "createdAt": "2024-03-20T10:00:00Z",
      "updatedAt": "2024-03-20T10:00:00Z",
      "lastUsed": "2024-03-21T15:30:00Z"
    }
  ],
  "pagination": {
    "limit": 20,
    "lastKey": "eyJpZCI6ImFmZDgwMTJiLWQ4MWUtNDFjNi05MmNkLWVlZDBjNmNiMzY3NiJ9"
  }
}

Code Examples

curl -X GET "https://api.metabind.ai/app/v1/organizations/org123/projects/proj456/api-keys?status=active" \
  -H "Authorization: Bearer YOUR_JWT"