GET
/
v1
/
api_tokens
/
{id}
curl --request GET \
  --url https://api.edgee.app/v1/api_tokens/{id} \
  --header 'Authorization: Bearer <token>'
{
  "object": "api_token",
  "id": "<string>",
  "user_id": "<string>",
  "name": "<string>",
  "from_browser": true,
  "last_used_at": "2023-11-07T05:31:56Z",
  "expires_at": "2023-11-07T05:31:56Z",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "token": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token. More info here

Path Parameters

id
string
required

Response

200
application/json

The ApiToken

An ApiToken is a unique identifier that you can use to authenticate requests to the API. You can create as many ApiTokens as you need.