Getting started
Authentication
Authenticating with the APIs is accomplished through the use of an API key. You can find your key in the dashboard.
When accessing the APIs, include your API key within the apikey header of your request:
curl --request GET \
--url 'https://api.savvyiq.ai/v2/entity-resolution/stream?name=Netflix' \
--header 'apikey: YOUR_API_KEY'
Keep your key secret
API keys carry full access to your account, so keep them out of client-side code, public repositories, and logs. If a key is exposed, rotate it from the dashboard.
Requests without a valid key return 401 Unauthorized.