The Filemonk API lets you manage your digital products and assets programmatically. Create and organize assets, link them to Shopify products as digital products, and query orders and download data — all through a simple REST API. Use it to automate your catalog, build custom integrations, sync data with external systems, or power your own workflows.Documentation Index
Fetch the complete documentation index at: https://docs.filemonk.io/llms.txt
Use this file to discover all available pages before exploring further.
What you can do
Manage assets
Create, list, update, and delete assets — external URLs and licence keys that are delivered to customers.
Manage digital products
Link assets to Shopify products and variants, configure preorders, and manage your digital catalog.
List orders
Search and filter orders by name, email, status, or date range with full pagination support.
Get order downloads
Retrieve a flat list of all files for an order with pre-computed status flags — no filtering logic needed on your end.
Base URL
All API requests are made to:Quick start
Get your API key
Open the Filemonk app in your Shopify admin and navigate to Settings > Other > API. Copy the API key displayed there.
Create an asset
Assets are the files or licence keys that customers receive when they purchase a product. Start by creating one:The response includes the asset’s
id — save this for the next step:Create a digital product
Link the asset to a Shopify product so customers receive it on purchase:That’s it — the Shopify product is now a digital product. When a customer purchases it, Filemonk will deliver the linked asset automatically.
Typical workflow
The API is designed around two core resources: assets and digital products.- Create assets — Upload external URLs or licence keys via
POST /assets. - Create digital products — Link assets to Shopify products via
POST /digital_products, providing theasset_idsfrom step 1 and theshopify_product_idyou want to attach them to. - Manage and iterate — Update assets or digital products as needed. You can add or remove assets from a digital product, change preorder settings, or swap out files.
- Query orders — Use
GET /ordersandGET /orders/{id}/downloadsto monitor purchases and download activity.
Key concepts
Assets vs digital products
An asset is a deliverable file or licence key — the thing customers actually receive. A digital product is the link between one or more assets and a Shopify product (or variant). You create assets first, then bundle them into digital products.Pre-computed download status
The downloads endpoint returns a flat array of files with all business logic already resolved. Each download object includes boolean flags likedownload_expired, download_limit_reached, access_revoked, and a master downloadable flag. You do not need to implement any expiration or limit checking on your side.
Pagination
All list endpoints return paginated results. Use thepage and per_page query parameters to navigate through results. The response includes a pagination object with total_count and total_pages for building pagination controls.
Rate limiting
The API uses a token-bucket rate limiter. Every response includesX-RateLimit-* headers so you can track your usage. See Rate Limiting for details.