Make your first API request in about five minutes.
This page assumes you are new to the ConnectUs API. You only need an SSP account, a Sandbox Token, and any HTTP client such as Postman, curl, your application, or a browser-based API tool.
Before you begin
- You can sign in to ConnectUs SSP.
- You have generated a Sandbox Token under Account Settings → API Integrations.
- You have a tool that can send HTTPS requests.
Your first request
We will ask ConnectUs for the projects available to your account. This is a safe read-only request and a good authentication test.
curl --request GET \ --url "https://workspace-stage.connectuscorp.com/api/v2/client/projects" \ --header "Accept: application/json" \ --header "Authorization: Bearer YOUR_SANDBOX_TOKEN"
A successful response is JSON and contains a data array plus pagination metadata:
{
"data": [
{
"id": 101,
"name": "Project Alpha",
"description": "Example project",
"status": "active",
"default_kit_id": 42
}
],
"meta": {
"current_page": 1,
"last_page": 1,
"per_page": 15,
"total": 1
}
}
If you receive your project list, your sandbox token and base URL are working. The API already knows which ConnectUs customer you are from the token.
Understanding the URL
https://workspace-stage.connectuscorp.com/api/v2 + /client/projects └──────────── API base URL ────────────┘ └── endpoint ──┘
All endpoints documented on this portal are client endpoints. They begin with /client after the /api/v2 base URL.
Use the same request in JavaScript
const response = await fetch(
"https://workspace-stage.connectuscorp.com/api/v2/client/projects",
{
headers: {
"Accept": "application/json",
"Authorization": "Bearer YOUR_SANDBOX_TOKEN"
}
}
);
const data = await response.json();
console.log(data);
Or in PHP
$response = Http::withToken($token)
->acceptJson()
->get('https://workspace-stage.connectuscorp.com/api/v2/client/projects');
$data = $response->json();
What should I do next?
If you are building an order integration
Read the Sales Order workflow. It shows how to discover shipping methods, submit the order, find the resulting order, and retrieve its details.
Create a Sales Order →If you are exploring your data
Start with projects, kits, and available devices to understand the records exposed to your account.
Learn the core concepts →