Skip to main content
GET
/
api
/
v2
/
api-keys
/
{key_id}
{
  "id": "<string>",
  "customer_id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "public_key": "<string>",
  "private_key_display": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "is_revoked": false,
  "revoked_at": "2023-11-07T05:31:56Z",
  "last_used_at": "2023-11-07T05:31:56Z",
  "environment": "<string>"
}

Authorizations

Authorization
string
header
required

JWT Bearer token from Auth0 authentication

Path Parameters

key_id
string
required

The unique identifier of the API key (UUID format).

Examples:

"07f5aec0-3ec3-441f-a098-912d201d067d"

Response

Successful Response

Model for API key information (V2).

id
string
required
customer_id
string
required
name
string
required
public_key
string
required
private_key_display
string
required
created_at
string<date-time>
required
description
string | null
is_revoked
boolean
default:false
revoked_at
string<date-time> | null
last_used_at
string<date-time> | null
environment
string | null
I