Warp API (1.0.0)

API for managing and manipulating timelines with advanced time travel capabilities.

Download OpenAPI description
Overview
Warp API Support support@warpapi.com
License MIT
Languages
Servers
Mock server
https://warp-multi-sidebars.redocly.app/_mock/apis/
Quantum server
https://api.warp.example.com/v1/

Timelines

Operations

List all timelines

Request

curl -i -X GET \
  https://warp-multi-sidebars.redocly.app/_mock/apis/timelines \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

A list of all timelines

Bodyapplication/jsonArray [
idstringread-only

Unique identifier for the timeline

Example: "tml_tesla_mission_1"
namestring

The name of the timeline

Example: "Tesla blueprint retrieval"
destination_timestring(date-time)
Example: "1889-03-10T23:50:00Z"
created_atstring(date-time)read-only

The timestamp when the timeline was created

statusstringread-only

The current status of the timeline (open or closed)

Enum"open""closed"
windowstringread-only

How long the timeline window is open to warp into.

Example: "12 minutes"
]
Response
application/json
[ { "id": "tml_tesla_mission_1", "name": "Tesla blueprint retrieval", "destination_time": "1889-03-10T23:50:00Z", "created_at": "2019-08-24T14:15:22Z", "status": "open", "window": "12 minutes" } ]

Create a new timeline

Request

Bodyapplication/jsonrequired
namestring

The name of the timeline

Example: "Tesla blueprint retrieval"
destination_timestring(date-time)
Example: "1889-03-10T23:50:00Z"
curl -i -X POST \
  https://warp-multi-sidebars.redocly.app/_mock/apis/timelines \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "name": "Tesla blueprint retrieval",
    "destination_time": "1889-03-10T23:50:00Z"
  }'

Responses

The timeline was created successfully

Bodyapplication/json
idstringread-only

Unique identifier for the timeline

Example: "tml_tesla_mission_1"
namestring

The name of the timeline

Example: "Tesla blueprint retrieval"
destination_timestring(date-time)
Example: "1889-03-10T23:50:00Z"
created_atstring(date-time)read-only

The timestamp when the timeline was created

statusstringread-only

The current status of the timeline (open or closed)

Enum"open""closed"
windowstringread-only

How long the timeline window is open to warp into.

Example: "12 minutes"
Response
application/json
{ "id": "tml_tesla_mission_1", "name": "Tesla blueprint retrieval", "destination_time": "1889-03-10T23:50:00Z", "created_at": "2019-08-24T14:15:22Z", "status": "open", "window": "12 minutes" }

Delete a timeline

Request

Path
timeline_idstringrequired

The ID of the timeline to delete

curl -i -X DELETE \
  'https://warp-multi-sidebars.redocly.app/_mock/apis/timeline/{timeline_id}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

Timeline deleted successfully

Travel

Operations

Items

Operations

Events

Operations

Anchors

Operations

Paradoxes

Operations

Monitoring

Operations