Skip to main content
The fastest way to explore Synq is through the REST API. This guide walks you from zero to your first successful API response: you’ll grab a token, attach the required headers, and pull back a live list of products. The whole process takes under five minutes.
Every Synq API request requires three pieces of identifying information: a Bearer token, a Tenant ID, and an Org ID. Your Tenant ID and Org ID are provided when your account is provisioned. Keep them handy before you begin.
1

Get your API token

Sign in to the Synq Dashboard with your account credentials. Once signed in, open your account settings and copy your API token — this is the Bearer token you’ll include on every API request.Tokens are short-lived, so retrieve a fresh one each time you start a new session. See the Authentication guide for details on token expiry and how to refresh automatically.
2

Set your credentials as environment variables

Export your credentials as shell variables so you can reuse them in the examples below:
Your Tenant ID and Org ID are displayed in your account settings in the Synq Dashboard.
3

Make your first API call — list products

Send a GET request to the products endpoint. Include your token and the two required tenant headers:
A successful response returns an array of product objects. Here’s an example:
4

Explore further

You’re connected. From here you can:
  • Create a productPOST /api/v1/pim/products
  • Fetch a single productGET /api/v1/pim/products/{id}
  • Check inventory levelsGET /api/v1/inventory
  • Place an orderPOST /api/v1/oms/orders
Browse the full API Reference for every available endpoint, or follow the Products Guide for a deeper walkthrough of the PIM module.
Use a tool like HTTPie or the Bruno API client to save your Synq environment variables and headers once — then every request is a single click.