Skip to main content
API Access is where you get programmatic access to your product catalog. Use it to build custom integrations on top of the WISEPIM REST API, so your own apps, scripts, and back-office tools can read and update products directly.

What API Access gives you

This page is the developer entry point to your project’s API. The WISEPIM REST API lets you do in code what you do in the app: list products, fetch a single product, create new ones, and push updates, all without manual exports. A typical request looks like this:
curl https://api.wisepim.com/v2/products \
  -H "Authorization: Bearer <your-token>" \
  -H "Content-Type: application/json"
Every call goes over HTTPS, targets a versioned base URL (/v2), and returns JSON. The response includes a count and a results array, so you can page through your whole catalog from your own code.
API Access is included in your plan. If the page shows a locked preview, your plan tier does not include API access yet. Reach out and we will enable it for your project.

Authentication

Every request must be authenticated. WISEPIM identifies your project from the token you send, so a token always acts on one project’s data. Pass your token in the Authorization header on every request:
Authorization: Bearer <your-token>
Requests without a valid token, or with one that has been revoked, are rejected. There is no other sign-in step for the API, which keeps integrations simple to wire up from any language or platform.
Treat your API token like a password. Never commit it to source control, paste it into a public issue, or ship it in client-side code. Store it in an environment variable or a secrets manager, and rotate it right away if you think it has leaked.

Request your credentials

Key management is coming to this page soon. For now, our team provisions API credentials for you, so you can get started without waiting for the self-service flow.
1

Open API Access

Go to Settings > API Access in the WISEPIM app.
2

Request credentials

Click Request API credentials. This opens a short contact form where you tell us which project you want to connect.
3

Receive your token

Our team sets up your credentials and shares your token securely. Store it somewhere safe before you close the message.
4

Make your first call

Add the token to your Authorization header and send a request to the /v2/products endpoint to confirm it works.
The View API documentation button on the same page links to the full developer reference, with every endpoint, parameter, and example you need to build your integration.
Build and test against a non-production project first. That way a mistake in your code never touches the catalog your live channels read from.

List products (API reference)

See the catalog endpoint in action, with parameters and a sample response.

Integration settings

Connect e-commerce platforms when you would rather not write code.

Security settings

Protect your account and review where it is signed in.

Settings overview

Find every settings page for your account and project.