UBIK Agent will launch soon, join the waitlist to get access!
English
Python
import requests url = "https://app.ubik-agent.com/api/v1/auth/token" headers = {"X-API-KEY": "<api-key>"} response = requests.post(url, headers=headers) print(response.text)
{ "access_token": "<string>", "token_type": "<string>" }
Exchange a valid API Key for a short-lived JWT access token.
Successful Response
Was this page helpful?