Public API Reference
Unauthenticated public endpoints — operator directory.
1 endpoint
Endpoints on this page
GET
/api/public/operators
List approved public operators
Returns a paginated list of approved, publicly listed operator apps. No authentication required.
Authentication
None
Query Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
page |
query | integer |
optional | Page number (default 1) |
page_size |
query | integer |
optional | Items per page (default 20, max 100) |
Response (Success)
| Name | Type | Required | Description |
|---|---|---|---|
data |
array<object> |
required | |
page |
integer |
required | |
page_size |
integer |
required | |
total |
integer |
required |
Example Request
curl -X GET "https://api.buddo.xyz/api/public/operators"
Example Response
{
"data": [
{
"app_description": {},
"app_name": "string",
"id": "00000000-0000-0000-0000-000000000000",
"inserted_at": "2026-01-01T00:00:00Z",
"logo_url": {},
"website_url": {}
}
],
"page": 0,
"page_size": 0,
"total": 0
}