Last updated

Transportial API Quickstart Guide

Welcome to Transportial! This quickstart guide will help you get started with Transportial's time travel API, allowing you to make your first API call and begin exploring the possibilities of temporal manipulation.

Step 1: Sign Up and Get Your API Key

  1. Visit the Transportial Register Page or setup an environment Transportial developer Register Page
  2. Create your account and log in.
  3. Create an app or

Your API key is required to authenticate all API requests.

Step 2: Make Your First API Request

Let's start by making a simple request to the Transportial API to fetch the transport orders

Fetching a

Use the following curl command to set a temporal anchor:

curl -X get https://api.otms.transportial.com/api/transportOrder/{id} \
-H "Content-Type: application/json" \
-H "Authorization: Bearer TOKEN" 
  • id: the UUID identifier of the transport order

Response Example

{
  "transportOrder": {
    "id": "uuid", 
    "name": "Transport order name",
    "customer": {
      "business": {
        "id": "uuid", 
        "name": "business name",
      }
    }, 

  }
}

This response gives a TransportOrder object as a response

Congratulations!

You’ve completed the basics of creating a transport order using the Transportial API! Explore more advanced features in our documentation