Quickstart

This guide will get you all set up and ready to use the Products Manager API. We'll cover how to get your API key and make your first request.

Create an API key

  1. Log in to your Products Manager account.
  2. Go to Settings → API Keys.
  3. Click Create API Key, give it a name, and copy the generated key.

Keep your API key secure — treat it like a password. It grants full access to your account's data.

Make your first request

With your API key in hand, you're ready to make your first request. Here's how to list your products:

List products

GET
/products
curl https://api.productsmanager.app/api/v1/products \
  -H "Authorization: Bearer {api_key}"

Response

{
  "data": [
    {
      "ean": "3760000000001",
      "title": "Produit exemple",
      "brand": "Ma Marque",
      "category": "Électronique",
      "created_at": "2024-01-15T10:30:00Z"
    }
  ],
  "meta": {
    "page": 1,
    "per_page": 20,
    "total": 1
  }
}

What's next?

Was this page helpful?