API Reference · Database
List applied migrations
The `_platform_migrations` history — every schema change applied through the platform, replayable from git.
GET/v1/tenants/{name}/workloads/{id}/db/migrations
Authorization
x-api-keystringrequired
Your per-workspace API key, e.g. llc_AbC123…. Also accepted as Authorization: Bearer <key>. Mint keys on your workspace's API keys page — each key belongs to one workspace.
Path parameters
namestringrequired
Workspace (tenant) name.
idstringrequired
Workload id within the workspace.
Response
200 — Applied migrations, in order.
curl https://api.live-llm.com/v1/tenants/acme/workloads/web/db/migrations \ -H "x-api-key: $LIVELLM_KEY"
Try itGEThttps://api.live-llm.com/v1/tenants/{name}/workloads/{id}/db/migrations
Fill required path params: name, id.
Example response200
[
{
"version": "0007",
"name": "add_orders_index",
"appliedAt": "2026-07-28T11:00:00Z"
},
{
"version": "0006",
"name": "create_orders",
"appliedAt": "2026-07-20T09:30:00Z"
}
]