Skip to main content
Retrieve a business by its ID.
GET /api/v1/businesses/:businessId

Parameters

Path

NameTypeRequiredDescription
businessIdstringYesThe business ID

Request example

curl --request GET 'https://payments.bleepay.com/api/v1/businesses/biz_abc123' \
  --header 'Authorization: Bearer <business_token>'

Response

Response schema

FieldTypeDescription
idstringBusiness identifier
namestringBusiness name
statusstringACTIVE, INACTIVE, etc.
createdAtstringISO 8601 creation timestamp
updatedAtstringISO 8601 last update timestamp

Example response

{
  "id": "biz_abc123",
  "name": "Acme Corporation",
  "status": "ACTIVE",
  "createdAt": "2026-06-09T12:00:00.000Z",
  "updatedAt": "2026-06-09T12:00:00.000Z"
}