Overview
The Filemonk API is a read-only REST API that provides access to orders and digital downloads for your Shopify store. All endpoints return JSON responses.The API is currently read-only. You can retrieve orders and download information but cannot create, update, or delete resources.
Endpoints
List orders
GET /orders — Search, filter, and paginate through your store’s orders.Get order
GET /orders/{id} — Retrieve a single order by ID.Get order downloads
GET /orders/{id}/downloads — Get all download files for an order with pre-computed status flags.Common response codes
| Status Code | Description |
|---|---|
200 OK | Request succeeded |
401 Unauthorized | Missing or invalid API key |
404 Not Found | Resource does not exist |
429 Too Many Requests | Rate limit exceeded — check the Retry-After header |