UBIK Agent will launch soon, join the waitlist to get access!
English
Python
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.
x >= 1
1 <= x <= 100
Successful Response
Hide child attributes
The unique identifier for the tool.
The name of the tool.
A brief description of what the tool does.
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?