Tokens & API
3 active tokens · 1.4M pulls this month
The token etl-prod hasn’t been used in 21 days. Rotate or revoke if it’s no longer needed.
Active tokens
etl-prod
str_live_••••••••92aa
Active
notebook-ad-hoc
str_live_••••••••41cd
Active
staging-snapshot
str_live_••••••••aa01
Idle
Pulls — last 30 days
Apr 24May 1May 8May 15May 22
Quick start — pull rows
# Pull the first 1000 rows of US ZIP population v1.4 curl "https://api.stratum.dev/v1/datasets/us-zip-population/versions/1.4/data?limit=1000" \ -H "Authorization: Bearer $STRATUM_TOKEN" \ -H "Accept: application/json"
Response
{
"dataset": "us-zip-population",
"version": "1.4.0",
"row_count": 1000,
"next_cursor": "eyJpZCI6OTAwfQ",
"data": [
{ "zip_code": "94110", "state": "CA",
"population": 74123, "median_income": 96500 },
{ "zip_code": "10001", "state": "NY",
"population": 25801, "median_income": 117200 }
]
}
Bulk snapshot (signed URL)
curl "https://api.stratum.dev/v1/datasets/us-zip-population/versions/1.4/snapshot" \ -H "Authorization: Bearer $STRATUM_TOKEN" # → 302 redirect to a signed Parquet URL, valid 10 minutes