Integrate Pimelo with your e-commerce tools using our REST API. Manage products, entities, attributes and media programmatically.
Sign up for free on Pimelo and access your dashboard.
Go to Settings > API Tokens to create your access key with the desired scopes.
Use your Bearer token to query the API. Try with the /channels endpoint below.
# List your sales channels
curl -X GET https://www.pimelo.app/en/api/v1/channels \
-H "Authorization: Bearer pim_your_token_here" \
-H "Content-Type: application/json"
All API requests require a Bearer token. Include it in the Authorization header of every request.
Authorization: Bearer pim_xxxxxxxxxxxxxxxx
API tokens start with the pim_ prefix followed by a random string. Each token is linked to a user and an organization with specific scopes.
| Scope | Description |
|---|---|
| products:read | Read products and their values |
| products:write | Create and update products |
| entities:read | Read entities and their values |
| entities:write | Create and update entities |
| settings:read | Read configuration (channels, locales) |
| settings:write | Update configuration |
| media:read | Download and view media |
| media:write | Upload and manage media |
| import-export:read | Read import/export profiles and jobs |
| import-export:write | Run import and export jobs |
| attributes:read | Read attributes and attribute sets |
| attributes:write | Create and update attributes |
All API requests use the same base prefix. Responses are in JSON format.
https://www.pimelo.app/api/v1/
Result lists use cursor-based pagination (search_after). Each response includes a cursor for the next page.
Search endpoints accept a JSON object with filters on attributes, status, channel and locale.
Errors follow the RFC 7807 (Problem Details) format with an HTTP code, type and descriptive message.
600 requests per minute per token. X-RateLimit-Limit, X-RateLimit-Remaining and Retry-After headers are included in every response.
Explore available endpoints to manage your product data.
Connect Claude, ChatGPT or any AI agent to Pimelo via the Model Context Protocol. 14 tools to search, create and update your product data using natural language.
Interactive documentation with request examples, responses and the ability to test live.
Open API Reference