Skip to main content
GET
/
check-api-key
Python
from kombo import Kombo


with Kombo(
    api_key="<YOUR_BEARER_TOKEN_HERE>",
) as k_client:

    res = k_client.general.check_api_key()

    # Handle response
    print(res)
{
  "status": "<string>",
  "data": {
    "environment_id": "<string>",
    "customer_id": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Create an API key on the Secrets page in the Kombo dashboard.

Response

GET /check-api-key Positive response

status
string
required
Allowed value: "success"
data
object
required