GET
/api/businesses
Returns a list of all businesses in your portfolio.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| limit | integer | No | The number of businesses to return. |
| offset | integer | No | The offset for pagination. |
Example Request
curl https://api.baalvion.com/v1/businessesExample Response
[
{
"id": "biz_1",
"name": "TechCorp India",
"country": "India",
"status": "Growth"
},
{
"id": "biz_2",
"name": "Baalvion Media UK",
"country": "United Kingdom",
"status": "Active"
}
]