The integrator.io API is RESTful, performs requests in JSON formatting, and is secured by bearer tokens.
URL
You can access your integrator.io API data from the browser or the REST client using the URLs below.
North America
Browser
See integrator.io API data in your browser.
https://integrator.io/api/
https://integrator.io/api/exports/a2la•••••••••••w4r
To use this feature, find your resource ID (import, export, connection, etc.) by opening the resource and checking the browser for the ID string. Then, append it to the API URL.
External calls
Access the integrator.io API via the REST client using this URL.
https://api.integrator.io/v1/
EU
Browser
See integrator.io API data in your browser.
https://eu.integrator.io/api/
https://eu.integrator.io/api/exports/a2la•••••••••••w4r
To use this feature, find your resource ID (import, export, connection, etc.) by opening the resource and checking the browser for the ID string. Then, append it to the API URL.
External calls
Access the integrator.io API via the REST client using this URL.
https://api.eu.integrator.io/v1/
Authentication
The integrator.io API uses API tokens to authenticate requests. Only an account owner or administrator can create and view an API token. You can view and manage your API tokens in integrator.io under Resources → API tokens. Be sure to keep your tokens secure at all times since they carry many privileges.
API clients should transmit this token using the Authorization
request header field and the Bearer
authentication scheme.
Sample HTTP request
GET /v1/tokenInfo HTTP/1.1 Host: <api.integrator.io/v1> OR <api.eu.integrator.io/v1> Authorization: Bearer my_api_token
Sample response
HTTP/1.1 200 OK Content-Type: application/json; charset=utf-8 { "_userId": "5e0••••••••••••••09", "scope":"*" }