The GET /v1/
endpoint allows you to view your API key details.Endpoint#
To get your account details, call the GET /v1/
endpoint, with your API key included in the Authorization
header.The response will include the following JSON body:{
"_id": "6835c077c4ac2b27cb78e2ea",
"api_key_label": "All Domains",
"account": {
"_id": "62605aea58ef60749068775f",
"email": "hello@example.com"
},
"websites_access": [
{
"_id": "65605af556ef807490687782",
"url": "example.com"
},
{
"_id": "65954c72dc22af8bca27226d",
"url": "example.io"
},
{
"_id": "67bc65e1b841d1018068f237",
"url": "example.co.uk"
}
]
}
For more details, see the API reference for the GET /v1/
endpoint. Modified at 2025-05-22 08:48:36