COUNTCOUNT
Sign Up
VendorsList vendors

List vendors

GET/partners/vendors

Returns a paginated list of vendors in the workspace.

Vendors are returned with address and contacts embedded. Results are sorted by name ascending.

HMAC signature + Bearer access token
Try this request

Query parameters

searchstringoptional

Partial match on vendor name, account number, or contact email.

statusenumoptional

Filter by vendor status.

One of: active, inactive

pageintegeroptional

Page number for pagination. The first page is 1.

limitintegeroptional

Records to return per page.

Responses

200Paginated list of vendors.
401Missing or invalid HMAC signature, expired timestamp, or invalid Bearer token. Troubleshoot
403The credential does not have access to this workspace or resource. Troubleshoot
429Rate limit exceeded (100 requests per minute per clientId). Retry after the Retry-After header. Troubleshoot
GEThttps://api.getcount.com/partners/vendors
Request
import crypto from 'node:crypto';

const BASE_URL = 'https://api.getcount.com';
const CLIENT_ID = process.env.COUNT_CLIENT_ID;
const CLIENT_SECRET = process.env.COUNT_CLIENT_SECRET;
const ACCESS_TOKEN = process.env.COUNT_ACCESS_TOKEN;

const method = 'GET';
const signingPath = '/vendors';
const timestamp = Math.floor(Date.now() / 1000).toString();
const bodyString = '';

const bodyHash = '';
const baseString = `${method}:${signingPath}:${timestamp}:${bodyHash}`;
const signature = crypto.createHmac('sha256', CLIENT_SECRET).update(baseString).digest('hex');

const response = await fetch(`${BASE_URL}/partners/vendors`, {
  method,
  headers: {
    'x-client-id': CLIENT_ID,
    'x-timestamp': timestamp,
    'x-signature': signature,
    Authorization: `Bearer ${ACCESS_TOKEN}`,
  },
});

console.log(await response.json());
Response · 200
{
  "page": 1,
  "limit": 50,
  "totalRecords": 1,
  "filters": {
    "search": null,
    "status": null
  },
  "vendors": [
    {
      "id": "d4e5f6a7-b8c9-0123-defa-234567890123",
      "name": "Office Depot",
      "email": "ap@officedepot.com",
      "mainPhone": "+18001234567",
      "website": "https://officedepot.com",
      "accountNumber": "V-1001",
      "status": "active",
      "type": "SUPPLIER",
      "legalName": "Office Depot Inc.",
      "businessName": null,
      "taxNumber": null,
      "taxType": "none",
      "is1099": false,
      "address": {
        "street": "500 Supply Chain Blvd",
        "city": "Boca Raton",
        "state": "FL",
        "zipCode": "33431",
        "country": "USA"
      },
      "contacts": [
        {
          "id": "a5da3577-bf85-4e3a-aa73-df85ca69bc67",
          "firstName": "Accounts",
          "lastName": "Payable",
          "email": "ap@officedepot.com",
          "phone": "+18001234567",
          "isPrimary": true
        }
      ],
      "createdAt": "2026-01-15T10:30:00.000Z",
      "updatedAt": "2026-01-28T14:22:30.000Z"
    }
  ]
}