We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
API tokens authenticate requests to the REST API. Manage them under System → API Tokens.
read
write
*
Authorization: Bearer your-token-here
Example with curl:
curl -H "Authorization: Bearer your-token-here" \ http://localhost:8080/api/marble/items/blog_post
Example with JavaScript:
const res = await fetch('/api/marble/items/blog_post', { headers: { 'Authorization': 'Bearer your-token-here' } }); const data = await res.json();
If a blueprint has API Public enabled, its items can be fetched without a token. All other blueprints require a valid token.
Click Delete next to the token. The token is immediately invalidated.