Quickstart
This guide will get you all set up and ready to use the Pixee PIM API. We'll cover how to get your API key and make your first request.
Before you can make requests to the API, you need to create an API key in your account settings.
Create an API key
- Log in to your Pixee PIM account.
- Go to Settings → API Keys.
- Click Create API Key, give it a name, select the required scopes, and copy the generated key.
API keys are prefixed with pm_live_ (production) or pm_test_ (test). Keep them secure — treat them like passwords.
Make your first request
With your API key in hand, list your products:
List products
GET
/productscurl "https://api.pixeepim.com/api/v1/products?skip=0&limit=20" \
-H "Authorization: Bearer pm_live_abc123..."
Response
{
"items": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"ean": "3760000000001",
"name": "Produit exemple",
"price": 29.99,
"is_active": true,
"created_at": "2026-01-15T10:30:00Z"
}
],
"meta": {
"total": 1,
"page": 1,
"per_page": 20,
"total_pages": 1,
"has_next": false,
"has_previous": false
}
}
What's next?
- Read the Authentication guide for full details on API keys, JWT tokens, and scopes.
- Explore the Products resource to create, update, and search products.
- Use Imports to bulk-load your catalog from CSV, Excel, JSON, or SFTP.
- Browse the Full API Reference for every endpoint.