Skip to main content
GET
/
frontend
/
api
/
v1
/
auth
/
api-token
/
{token}
Get API Token
curl --request GET \
  --url https://{host}/frontend/api/v1/auth/api-token/{token} \
  --header 'Authorization: Bearer <token>'
{
  "created": "2023-11-07T05:31:56Z",
  "expired": true,
  "expires-at": "2023-11-07T05:31:56Z",
  "permissions": {},
  "restrictions": {},
  "token": "<string>",
  "updated": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.probe.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API Key Security (Header).

Path Parameters

token
string
required

API Token

Query Parameters

include-expired
boolean
default:false

Include expired API Tokens

Response

OK

created
string<date-time>
expired
null | boolean
expires-at
null | string<date-time>
permissions
object
restrictions
object
token
string
updated
string<date-time>