Introduction
TMS by FAST is the Transport Management System of FAST Logistics. The TMS API enables customers to submit shipment bookings and get the shipping status of their shipment from time of pickup until delivery.
Our API is organized around REST and has predictable resource-oriented URLs, accepts form-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs.
Authentication
TMS requires an API key in the header "x-api-key" of every incoming HTTP request. An API secret key will be provided to our customer who wish to use our API.
Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret API keys in publicly accessible areas such as GitHub, client-side code, and so forth.
All API requests must be made over HTTPS. Calls made over plain HTTP will fail. API requests without authentication will also fail.
Production Base URL
https://api.fast.com.ph/tmsv1
Development Base URL
https://dev.api.fast.com.ph/tmsv1
Continue on to the basic section to create bookings and track them.