# List organization API keys div strong 🔨 In Development — This section is still being developed and may change. Retrieve all API keys belonging to an organization, including masked key values, current status, and spending limits. #### Path Parameters **`organization_id`** string required Unique organization identifier. #### Query Parameters **`skip`** integer optional · Defaults to `0` Number of records to skip before returning results. **`take`** integer optional · Defaults to `25` Maximum number of records to return. Maximum value: `100`. ## Returns Paginated collection of API key summaries. ```json { "totalCount": 2, "items": [ { "id": "apk_7f21a9d94e6f48b1", "maskedKey": "oak_prod_1f33…9b2", "name": "Production backend", "status": "active", "monthlyLimit": 2500, "currentMonthCost": 812.55, "createdAt": "2025-10-11T09:32:14Z", "updatedAt": "2025-11-04T12:01:47Z" }, { "id": "apk_8a98c1be43f54d00", "maskedKey": "oak_prod_8ab2…1c5", "name": "QA environment", "status": "paused", "monthlyLimit": 500, "currentMonthCost": 120.11, "createdAt": "2025-06-21T14:22:03Z", "updatedAt": "2025-10-29T08:45:02Z" } ] } ``` ## Request example ```bash curl "https://api.freddy.aitronos.com/v1/organizations/ORG_1234567890abcdef/api/api-keys?skip=0&take=50" \ -H "Authorization: Bearer $FREDDY_API_KEY" ``` ```python import requests response = requests.get( "https://api.freddy.aitronos.com/v1/organizations/ORG_1234567890abcdef/api/api-keys", headers={"Authorization": f"Bearer {api_key}"}, params={"skip": 0, "take": 50} ) response.raise_for_status() payload = response.json() print(f"Found {payload['totalCount']} keys") ``` ```javascript const response = await fetch( 'https://api.freddy.aitronos.com/v1/organizations/ORG_1234567890abcdef/api/api-keys?skip=0&take=50', { headers: { 'Authorization': `Bearer ${apiKey}` } } ); if (!response.ok) { throw new Error('Failed to list API keys'); } const data = await response.json(); console.log(`Retrieved ${data.items.length} keys`); ``` ## Related resources - [Create organization API key](/docs/api-reference/organizations/management/api-keys/create) - [Retrieve organization API key](/docs/api-reference/organizations/management/api-keys/retrieve) - [Get organization usage limits](/docs/api-reference/organizations/analytics/get-usage-limit)