curl --request GET \
--url https://api.example.com/v1/api-tokens/{api_token} \
--header 'Authorization: Bearer <token>'{
"token": "<string>",
"created_at": 123,
"name": "<string>",
"token_id": "<string>"
}curl --request GET \
--url https://api.example.com/v1/api-tokens/{api_token} \
--header 'Authorization: Bearer <token>'{
"token": "<string>",
"created_at": 123,
"name": "<string>",
"token_id": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.