- Universal API
- Logging
- Account
- Credits
- Query Logging
- GETGet Query Logging Status
- PATCHUpdate Query Logging Status
- GETGet User Business Status
- PUTUpdate User Account Type
- PATCHUpdate User Business Info
- POSTCreate User With Business Info
- POSTRequest Assistant Hiring Approval
- POSTClaim Assistant Hiring One Time Link
- POSTValidate Tax Id
- GETGet Supported Tax Countries
- GET
Query Logging
Get User Business Status
GET
/
v0
/
user
/
business-status
Copy
Ask AI
curl --request GET \
--url 'https://api.unify.ai/v0/user/business-status' \
--header "Authorization: Bearer $UNIFY_KEY"
Copy
Ask AI
{
"account_type": "string",
"business_name": "string | null",
"tax_id": "string | null",
"business_type": "string | null",
"business_verified": "boolean",
"tax_exempt": "boolean",
"tax_jurisdiction": "string | null",
"business_address": "any | null"
}
Get the current user’s business classification status.
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Copy
Ask AI
curl --request GET \
--url 'https://api.unify.ai/v0/user/business-status' \
--header "Authorization: Bearer $UNIFY_KEY"
Copy
Ask AI
{
"account_type": "string",
"business_name": "string | null",
"tax_id": "string | null",
"business_type": "string | null",
"business_verified": "boolean",
"tax_exempt": "boolean",
"tax_jurisdiction": "string | null",
"business_address": "any | null"
}
Copy
Ask AI
curl --request GET \
--url 'https://api.unify.ai/v0/user/business-status' \
--header "Authorization: Bearer $UNIFY_KEY"
Copy
Ask AI
{
"account_type": "string",
"business_name": "string | null",
"tax_id": "string | null",
"business_type": "string | null",
"business_verified": "boolean",
"tax_exempt": "boolean",
"tax_jurisdiction": "string | null",
"business_address": "any | null"
}
Assistant
Responses are generated using AI and may contain mistakes.