Skip to main content
GET
/
api-keys
List my API keys
curl --request GET \
  --url https://lb.routeme.sh/api-keys \
  --header 'X-Mgmt-Key: <api-key>'
[
  {
    "id": 123,
    "name": "<string>",
    "active": true,
    "allowed_domains": [
      "<string>"
    ],
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
]

Authorizations

X-Mgmt-Key
string
header
required

Management API key from the RouteMesh dashboard. Required for customer API endpoints (/api-keys, /usage). Each request also carries the customer's RPC API key in the URL path for the RPC endpoint.

Response

List of API keys

id
integer
required

Internal key ID (for filtering /usage).

name
string | null
required

Friendly name.

active
boolean
required

Whether the key is active.

allowed_domains
string[]
required

Allowed domains.

routing_strategy
enum<string>
required
Available options:
economy,
performance
created_at
string<date-time>
required
updated_at
string<date-time>
required