Storeep API Documentation

Build integrations with the Storeep API to access your store's products and orders programmatically.

Quick Start

  1. Create an access token

    Go to Settings → Access tokens in your Storeep dashboard and create a new token with the permissions you need.

  2. Make your first request

    Use the token in the Authorization header to authenticate API requests.

cURL
curl -X GET https://api.storeep.com/v1/products \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"

Base URL

All API requests are made to the following base URL:

https://api.storeep.com/v1

Response Format

All responses are returned in JSON format. Successful responses include a data array and a meta object with pagination details.

JSON
{
    "data": [...],
    "meta": {
        "pagination": {
            "total": 150,
            "count": 20,
            "per_page": 20,
            "current_page": 1,
            "total_pages": 8,
            "links": {
                "next": "https://api.storeep.com/v1/products?page=2"
            }
        }
    }
}

Available Endpoints

MethodEndpointDescriptionPermission
GET/api/v1/productsList all productsproducts:read
GET/api/v1/ordersList all ordersorders:read
GET/api/v1/webhooksList all webhookswebhooks:read
POST/api/v1/webhooksCreate a webhookwebhooks:write
PUT/api/v1/webhooks?id=Update a webhookwebhooks:write
DELETE/api/v1/webhooks?id=Delete a webhookwebhooks:write

Need Help?

If you have questions or run into issues, reach out to our support team at support@storeep.com.