REST API (read-only)
The REST API lets you read your Logistified data over plain HTTP — GET a URL,
get JSON back — without speaking MCP or writing code. It’s the same data and the same
keys as AI / Agent access, exposed as ordinary
REST resources.
Base URL
Section titled “Base URL”https://prod.logistified.app/api/v1A first request
Section titled “A first request”Authenticate with a read-scope API key (see Authentication):
curl -s -H "Authorization: Bearer $LSTK_TOKEN" \ "https://prod.logistified.app/api/v1/purchase-orders?limit=5"Every successful response is wrapped in a small envelope:
{ "data": { "purchaseOrders": [ /* … */ ], "totalCount": 42, "cursor": "2" }, "meta": { "requestId": "…", "apiVersion": "1.0" }}What you can read
Section titled “What you can read” Purchase orders List + full detail, line items, payments, documents, shipment, addresses, receiving schedule, log, credits.
Stock takes List, reasons, full detail, line items.
Transfer orders List, full detail, line items, shipment, documents, addresses, log.
How it relates to AI / Agent access
Section titled “How it relates to AI / Agent access”The REST API and the Agent access surface share the
same lstk_ API keys, the same read scope, and the same per-shop rate limit, and
return the same data. If you already use Agent access, your read keys work here unchanged.
Interactive API explorer → Browse and try every endpoint — live schemas, parameters, and copy-paste code samples.