Quickstart
Make your first API call in Python, TypeScript, or cURL
You’ll need your Auxiliar API key. Send it as a bearer token on every request to https://api.auxiliar.ai, and call each tool using its own native API.
Make your first call
This runs a Google search through Serper. Replace YOUR_API_KEY with your key:
Python
TypeScript
cURL
The response is Serper’s JSON — an organic array of results — returned exactly as the provider sent it.
Keep your API key in an environment variable rather than hardcoding it. A 401 response means the key is missing or unrecognized — see Authentication.
Call any other tool
Every tool uses the same base URL and bearer token; only the path and payload change:
See each tool’s page for its full set of endpoints and parameters.