UBIK Agent will launch soon, join the waitlist to get access!
import requests
url = "https://app.ubik-agent.com/api/v1/tools"
headers = {"X-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"items": [
{
"id": "d1e2f3a4-b5c6-7890-1234-567890abcdef",
"name": "Financial Data Extractor",
"description": "Extracts key financial metrics from annual reports."
}
],
"total": 35,
"page": 1,
"limit": 20,
"has_more": true
}Retrieves a paginated list of all tools accessible to the user.
import requests
url = "https://app.ubik-agent.com/api/v1/tools"
headers = {"X-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"items": [
{
"id": "d1e2f3a4-b5c6-7890-1234-567890abcdef",
"name": "Financial Data Extractor",
"description": "Extracts key financial metrics from annual reports."
}
],
"total": 35,
"page": 1,
"limit": 20,
"has_more": true
}Documentation Index
Fetch the complete documentation index at: https://docs.ubik-agent.com/llms.txt
Use this file to discover all available pages before exploring further.
x >= 11 <= x <= 100Successful Response
Total number of tools available.
The current page number.
The number of items per page.
Indicates if there are more pages available.
Was this page helpful?