Skip to main content
GET
/
v1
/
platform
/
businesses
/
{business_id}
/
vendors
List vendors
curl --request GET \
  --url https://sandbox.thredfi.com/v1/platform/businesses/{business_id}/vendors/ \
  --header 'Authorization: Bearer <token>'
{
  "count": 123,
  "page_info": {
    "total_count": 123,
    "current_page": 1,
    "total_pages": 7,
    "page_size": 20
  },
  "results": [
    {
      "type": "<string>",
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "mobile_phone": "<string>",
      "office_phone": "<string>",
      "address_string": "<string>",
      "memo": "<string>",
      "status": "<string>",
      "transaction_tags": [
        "<unknown>"
      ],
      "documents": [
        {
          "url": "<string>",
          "expires_in": 123,
          "document_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "file_name": "<string>",
          "file_size": 123,
          "mime_type": "<string>"
        }
      ],
      "external_id": "<string>",
      "individual_name": "<string>",
      "company_name": "<string>",
      "email": "[email protected]"
    }
  ]
}

Authorizations

Authorization
string
header
required

Partner-level JWT token (unscoped). Token payload includes partner_id. Business access is validated via partner ownership. Format: Bearer <your-jwt-token>

Use this for: Multi-business operations where the business_id is specified in the URL and partner has access to multiple businesses.

Path Parameters

business_id
string
required

Query Parameters

external_id
string

The external ID of the vendor to fetch (exact match).

external_id_contains
string

Filter vendors whose external ID contains the given substring (case-insensitive).

include_archived
boolean
default:false

Include archived vendors in the response. Defaults to false.

name
string

Exact name match on company or individual name.

name_contains
string

Substring match on company or individual name (case-insensitive).

page
integer

Page number (default: 1)

page_size
integer

Items per page (default: 20, max: 100)

Response

count
integer
required

Total number of items

Example:

123

page_info
object
required
Example:
{
  "total_count": 123,
  "current_page": 1,
  "total_pages": 7,
  "page_size": 20
}
results
object[]
required