Introduction
Get started with the Simple Product Feeds API. Learn about base URLs, versioning, and request/response conventions.
The Simple Product Feeds API lets you programmatically access your shop data, feeds, and exports. It follows REST conventions and returns JSON responses.
Base URL
All API requests use the following base URL:
https://app.simpleproductfeeds.com/v1
Versioning
The API is versioned via the URL path. The current version is v1. When breaking changes are introduced, a new version will be released and the previous version will continue to work for a deprecation period.
Request format
- All requests must use HTTPS
- Request bodies (where applicable) must be JSON with
Content-Type: application/json - All responses are JSON encoded as UTF-8
Response format
Successful responses wrap data in a data key:
{
"data": {
"id": "shop_4kx8m",
"object": "shop",
"domain": "my-store.myshopify.com",
"name": "My Store"
}
}
Collection endpoints include pagination metadata:
{
"data": [...],
"meta": {
"page": 1,
"per_page": 25,
"total": 142,
"total_pages": 6,
"has_more": true
}
}
Request IDs
Every response includes an X-Request-Id header. Include this value when contacting support about a specific request — it helps us locate your request in our logs quickly.
Quick example
curl https://app.simpleproductfeeds.com/v1/shop \
-H "Authorization: Bearer spf_live_sk_your_key_here"