Skip to main content
GET
/
v1
/
export-schemas
Python (ticksupply library)
# pip install ticksupply
from ticksupply import Client

client = Client(api_key="<api-key>")
for schema in client.export_schemas.list():
    print(schema)
[
  {
    "id": "sch_0194a1b2c3d4e5f6a7b8c9d0e1f2a3b4",
    "name": "normalized",
    "stream_category": "trade",
    "is_built_in": false,
    "created_at": "2023-11-07T05:31:56Z",
    "version": 1,
    "has_draft": false
  }
]

Authorizations

X-Api-Key
string
header
required

Your API key. Get one from the dashboard at https://app.ticksupply.com/api-keys

Response

List of export schemas

id
string
required

Export schema ID

Pattern: ^sch_[a-f0-9]{32}$
Example:

"sch_0194a1b2c3d4e5f6a7b8c9d0e1f2a3b4"

name
string
required

Schema name

Example:

"normalized"

stream_category
enum<string>
required

Stream category this schema applies to

Available options:
trade,
orderbook,
book_update,
quote,
kline,
ticker,
liquidation
Example:

"trade"

is_built_in
boolean
required

true for schemas provided by Ticksupply (e.g., normalized, book_5, book_20). Built-ins are read-only and cannot be deleted. false for schemas you created.

Example:

false

created_at
string<date-time>
required

Creation timestamp

version
integer
required

Latest published version number. 0 if no version has been published yet.

Example:

1

has_draft
boolean
required

Whether an unpublished draft version exists for this schema.

Example:

false

Last modified on April 5, 2026