🔐 API Authentication

Base Url https://betapi.print-labs.de

1. Obtain Access & Refresh Tokens

Send a POST request to the token endpoint:

Endpoint: POST /auth/v2/token/

Request Payload:

{
  "apikey": "your-api-key"
}

Response Payload:

{
  "access_token": "your-access-token",
  "refresh_token": "your-refresh-token",
  "expires_in": 123
  "refresh_expires": 123
}

2. Use the Access Token

Include the access token in the Authorization header:

Authorization: Bearer your-access-token

Notes

Printlabs API Docs