cURL
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>" }
Retrieve an ApiToken that has previously been created.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token. More info here
Bearer <token>
<token>
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.
Was this page helpful?