Create one of your own API tokens
const url = 'https://example.com/api/v1/auth/me/tokens';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"description":"example","ttl_days":1}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/api/v1/auth/me/tokens \ --header 'Content-Type: application/json' \ --data '{ "description": "example", "ttl_days": 1 }'Mints a CLI/API token for the caller and returns it once (store it now; it cannot be retrieved again). A description is required (what the token is for); an optional ttl_days bounds its lifetime (default 90, maximum 365). Requires authentication; self-scoped (always issued for you). The token is stamped with the device and address that created it.
Request Body required
Section titled “Request Body required ”object
A URL to the JSON Schema for this object.
What the token is for (required)
Days until the token expires (default 90, maximum 365)
Responses
Section titled “ Responses ”Created
object
A URL to the JSON Schema for this object.
What the token is for
When the token expires (RFC 3339)
The non-secret ogp locator for the new token
The bearer token, shown once. Store it now: it cannot be retrieved again.
Example
{ "$schema": "/api/v1/schemas/CreateMeTokenOutputBody.json"}default
Section titled “default ”Error
object
A URL to the JSON Schema for this object.
A human-readable explanation specific to this occurrence of the problem.
Optional list of individual error details
object
Where the error occurred, e.g. ‘body.items[3].tags’ or ‘path.thing-id’
Error message text
The value at the given location
A URI reference that identifies the specific occurrence of the problem.
HTTP status code
A short, human-readable summary of the problem type. This value should not change between occurrences of the error.
A URI reference to human-readable documentation for the error.
Example
{ "$schema": "/api/v1/schemas/ErrorModel.json", "detail": "Property foo is required but is missing.", "instance": "https://example.com/error-log/abc123", "status": 400, "title": "Bad Request", "type": "about:blank"}