REST API
Authentication
Base URL
We enforce HTTPS in every request to improve data security, integrity, and privacy. The API does not support HTTP. All requests contain the following base URL https://api.filtro.ai/v01
On-Prem deployments will have their own custom Base URL. Learn more about On-Prem Hosting.
Authentication
Filtro uses API keys for authentication. Visit our platform to get your first personal API key.
Remember that your keys are secrets! Please do not share them with others or expose it in any client-side code. Production requests must be routed through your own backend server where your key can be securely loaded from an environment variable or other service.
All REST API requests should include your API key in an Authorization
HTTP header
Response codes
Filtro uses standard HTTP codes to indicate the success or failure of your requests.
Status | Description |
---|---|
200 | Successful request. |
400 | Check that the parameters were correct. |
401 | The API key used was missing. |
403 | The API key used was invalid. |
404 | The resource was not found. |
429 | The rate limit was exceeded. |
5xx | Indicates an error with Filtro servers. |
Check Error Codes for a comprehensive breakdown of all possible API errors.