---
title: "Api Keys List List"
method: GET
path: "/api/keys/list/"
tags: ["users"]
---

# Api Keys List List

`GET /api/keys/list/`

Declare per-endpoint throttling configuration attributes for views.

Endpoints can inherit this mixin and set:
- endpoint_default_rate_limit_per_user_per_min: float | None

When set (not None), throttling will use ONLY this default RPM for the endpoint
without requiring API key / org attributes on the request. When unset, the
standard API key / organization / subscription limits apply.

## Query parameters

- `page` integer
- `page_size` integer

## Headers

- `Authorization` string, required

## Response `200`

- PaginatedOrganizationKeyReadList
  - `count` integer, required
  - `next` string, uri, nullable
  - `previous` string, uri, nullable
  - `total_count` integer
  - `current_filters` FilterParamDictPydantic — Pydantic model for FilterParamDict. A dictionary that maps metric names to their filter parameters. Each key is a metric name (str), and each value can be: - A single MetricFilterParamPydantic (one condition) - A List[MetricFilterParamPydantic] (multiple conditions for same metric) - A FilterBundlePydantic (nested filter bundle with connector) Note: Uses extra="allow" for dynamic metric name fields. The __pydantic_extra__ annotation tells Pydantic what types to expect for extra fields, and generates typed additionalProperties in JSON Schema.
  - `filters_data` PaginatedOrganizationKeyReadListFiltersData
  - `results` OrganizationKeyRead[], required
    - `id` string, required
    - `suffix` string, required
    - `tags` GenericTagDisplay[], required
      - `id` string, required
      - `name` string, required
      - `color` string, required
      - `created_at` string, date-time, required
      - `updated_at` string, date-time, required
    - `status` 'active' | 'expired' | 'revoked', required — * `active` - Active * `expired` - Expired * `revoked` - Revoked
    - `project` string, nullable
    - `prefix` string, required
    - `hashed_key` string, required
    - `created` string, date-time, required
    - `name` string — A free-form name for the API key. Need not be unique. 50 characters max.
    - `revoked` boolean — If the API key is revoked, clients cannot use it anymore. (This cannot be undone.)
    - `expiry_date` string, date-time, nullable — Once API key expires, clients cannot use it anymore.
    - `key_usage` integer, required
    - `max_usage` integer
    - `last_used` string, date-time, required
    - `rate_limit` number, double, nullable
    - `spending_limit` number, double, nullable
    - `spending_in_period` number, double, required
    - `is_test` boolean
    - `is_temporary` boolean
    - `revoked_at` string, date-time, nullable, required
    - `revoked_by_email` string, nullable, required
    - `user` integer, nullable, required
    - `organization` integer, nullable, required
    - `created_by` integer, nullable, required
    - `updated_by` integer, nullable, required

---

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