Skip to main content
GET
/
api
/
businesses
/
{id}
Get Business
curl --request GET \
  --url https://api.teel.finance/api/businesses/{id}
{
  "id": "biz_xyz789",
  "name": "Acme Corp",
  "type": "llc",
  "country": "US",
  "email": "contact@acmecorp.com",
  "phone": "+14155551234",
  "createdAt": "2026-01-15T08:00:00Z",
  "updatedAt": "2026-03-10T12:30:00Z"
}
Returns the details of a specific business by its ID.

Authentication

This endpoint requires a valid JWT bearer token in the Authorization header.

Path Parameters

id
string
required
The unique identifier of the business.

Response

id
string
Unique business identifier.
name
string
Legal business name.
type
string
Business entity type.
country
string
Country code.
email
string
Contact email.
phone
string
Contact phone number.
createdAt
string
ISO 8601 timestamp of when the business was created.
updatedAt
string
ISO 8601 timestamp of the last update.
{
  "id": "biz_xyz789",
  "name": "Acme Corp",
  "type": "llc",
  "country": "US",
  "email": "contact@acmecorp.com",
  "phone": "+14155551234",
  "createdAt": "2026-01-15T08:00:00Z",
  "updatedAt": "2026-03-10T12:30:00Z"
}