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.
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 Products Manager account.
- Go to Settings → API Keys.
- 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
/productscurl 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?
- Read the Authentication guide for full details on API keys.
- Explore the Products resource to create, update, and search products.
- Use Imports to bulk-load your catalog from a CSV or external source.
- Browse the Full API Reference for every endpoint.