Endpoint
Authentication
Two ways to connect: sign in with your HasData account, or send an API key.Sign in with your HasData account
Clients that support OAuth connect without you handling a key: add the endpoint and follow the sign-in prompt. Each connection gets its own API key, named after the client — delete that key on the API keys page to disconnect it.API key
Send your key from the dashboard in thex-api-key header. Use this for clients without OAuth support, and for unattended agents.
x-api-key. Requests with no valid credential are rejected with 401 Unauthorized.
Choosing Which APIs to Expose
By default the server exposes all 57 HasData APIs as tools, and your model re-reads all 57 tool definitions on every call. Add theapis parameter to expose only the ones you need:
?apis=google_maps_search,web_scraping gives two tools.
A misspelled name is ignored and the rest still loads. If every name is misspelled the request fails with
400 and lists the valid providers.