Create, list, inspect, and revoke short-lived API tokens. Use them with Bearer authorization only.
Short-lived API tokens are JWTs issued from your static API key. They have an expiration time and an optional request limit. Use them when you need to give a time-bound credential to a client (e.g. server issuing tokens for a frontend or worker) without sharing your main API key.
Always use Bearer. When calling any Mobula API with a short-lived token, send it in the header as Authorization: Bearer <token>. Do not use the x-api-key header for short-lived tokens.
Beta. For testing use https://demo-api.mobula.io.
All endpoints below require your static API key in the request (e.g. Authorization: YOUR_API_KEY or x-api-key: YOUR_API_KEY). Short-lived tokens are available on Startup, Growth, and Enterprise plans.
GET /api/2/auth/token?token=<jwt>Returns metadata for a single short-lived token by its JWT string. Requires your static API key and the token query parameter set to the full JWT.