Skip to content
Public API — beta. v1 is read-only and its response schema may change without notice. v2 will be the first stable version, published once the public API leaves beta — evaluate on v1, but pin to v2 for production.

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.

https://prod.logistified.app/api/v1

Authenticate with a read-scope API key (see Authentication):

Terminal window
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" }
}

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.