Authentication
Our API uses API tokens to authenticate requests. You can view and manage your API keys in your account settings.
Authentication to the API is performed via HTTP bearer auth. Provide your API token as Bearer <token>
in the Authorization
header of your requests.
Example request with bearer token
curl https://v2.3dcityloader.com/api/export/simple\
-H "Authorization: Bearer {token}"
Replace {token}
with your created API token.
Permissions
API tokens have permissions that control what actions they can perform. You can set these permissions when creating a new token or edit them later in your account settings. The permissions varies depending on the API service you want to access, here are some common permissions:
- Name
export.create
- Description
Allows the token to create new exports.
- Name
export.read
- Description
Allows the token to view and download created exports.
- Name
export.pay
- Description
Allows the token to pay for chargeable exports.
Keep disabled for testing to prevent accidental costs.