This guide shows how to authenticate and retrieve contacts from your Bosscart website.
1. Get your API key
Open your website settings and go to Applications > API Key.
Keep the key private. The API key grants access to website data and should only be used from trusted server-side code.
2. Choose your domain
Use your website domain in the API base URL:
https://{domain}/api/site
For example, if your website domain is store.example.com, the contacts endpoint is:
https://store.example.com/api/site/contacts
3. Send a request
curl "https://store.example.com/api/site/contacts?limit=10&skip=0" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "User-Agent: BosscartDocsExample/1.0"
The response returns a paginated list:
{
"items": [],
"totalCount": 0,
"limit": 10,
"skip": 0
}
4. Explore endpoints
View endpoints
Review generated endpoint docs and test requests in the interactive playground.
Last modified on June 11, 2026