Welcome to JATO FLEX Developer Portal
JATO FLEX empowers developers with precise, up-to-date vehicle data, ensuring seamless integration and enhanced functionality for any automotive application.
JATO FLEX empowers developers with precise, up-to-date vehicle data, ensuring seamless integration and enhanced functionality for any automotive application.
Our APIs can be used for mission-critical systems.
Enjoy limitless calls for seamless integration.
Scalability is seamless for your needs.
Here's a step-by-step guide to help you get started with using the API securely:
Understand Security Concepts: Before diving in, it's crucial to grasp how security works and the fundamental concepts of the API.
Company and Developer Credentials: FLEX requires two sets of credentials to authenticate requests:
Your company credentials, which determine the data you're licensed to access.
Your developer credentials, used for analytics and call rate packages.
Include Credentials in Request Headers: To inform FLEX about your company and developer details, you'll need to include two strings in the request headers for every API call you make:
Authorization: This should contain a JSON Web Token (JWT) obtained from JATO's OAuth 2.0 service. To retrieve your token, send a POST request to https://auth.jatoflex.com/oauth/token
with the following body:
username
: Your assigned us.customername
or ca.customername
username.
password
: Your assigned password.
grant_type
: Set to password
. Once posted, the response will follow the OAuth 2.0 format, providing an access token. The value you need to supply for Authorization is {token_type} + ' ' + {access_token}
. For example: "bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1Ni..."
Subscription Key: Include the primary subscription key found in your developer profile as a string.
By following these steps, you'll be able to securely authenticate and access the API resources.
The first step is to obtain the token required to access the API.
Use the POST method to make a request to the following URL:
POST https://auth.jatoflex.com/oauth/token
Request Body:
username
: Replace {your_user}
with your assigned username.
password
: Replace {your_password}
with your assigned password.
grant-type
: Set this field to password
.
Request Headers:
Content-type
: Ensure to set the content type as application/x-www-form-urlencoded
.
By following these steps, you'll be able to obtain the token and you'll be ready to explore the API.
Note: The token will only be available for 24 hours, after which you will need to make the call again.
Powered by Azure API Management.