---
title: "Get Enterprise Api Keys Endpoint"
method: GET
path: "/v2/enterprise/api-keys"
tags: ["api-keys"]
---

# Get Enterprise Api Keys Endpoint

`GET /v2/enterprise/api-keys`

Get API keys across organizations in the enterprise with pagination and optional org filter.

## Query parameters

- `page` integer
- `per_page` integer
- `org_id` string, nullable

## Response `200`

Successful Response

- PaginatedResponseApiKeyResponse
  - `end_cursor` string, nullable — Cursor to fetch the next page, or None if this is the last page.
  - `has_next_page` boolean — Whether there are more items available after this page.
  - `items` ApiKeyResponse[], required
    - `api_key_id` string, required
    - `api_key_name` string, required
    - `created_at` integer, required
    - `expires_at` integer, nullable, required
    - `is_active` boolean, required
    - `last_used_at` integer, nullable, required
    - `revoked_at` integer, nullable, required
  - `total` integer, nullable — Optional total count (can be omitted for performance).

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/devin/apis/devin-api-v1.md) · [All operations](https://skmtc.net/devin/apis/devin-api-v1/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/devin/devin-api-v1/revisions/e3244476af1c/schema)
