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.

Create an API key

  1. Log in to your Pixee PIM account.
  2. Go to Settings → API Keys.
  3. 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
/products
curl "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?

Was this page helpful?