Supported SimplifyTrip APIs
SimplifyTrip APIs are built on REST. Endpoints use predictable resource-oriented URLs, accept request payloads, return JSON, and use standard HTTP status codes.
You can use SimplifyTrip APIs in Test Mode without affecting real data. The API key used in authentication determines whether the request runs in LIVE_MODE or TEST_MODE.
Authentication
SimplifyTrip API uses API keys to authenticate requests. You can manage your API keys in API Keys Settings.
Test API keys start with pk_test_, live API keys start with pk_live_.
Test secret keys start with sk_test_, live secret keys start with sk_live_.
Keep keys secure. Do not expose API Key or Secret Key in public places such as GitHub or client-side code.
All API requests must be made over HTTPS.
Base URL
All current web services start with the base path below (BASE_URL):
https://merchant.simplifytrip.com
Try with Swagger: SimplifyTrip Open API.
Requirements
-
Api Key and Secret Key
Every request to SimplifyTrip API MUST include Api Key and Secret Key in headers.
_10X-Api-Key: "pk_live_xxxxxxxxxxxxxxxxxx"_10Authorization: "Bearer sk_live_xxxxxxxxxxxxxxxxxx"
-
Content Type
The request content type MUST be
application/json.
_10Content-Type: "application/json"