Vexar API

Marketplace

The public marketplace lists published AI business cards on a map. Browsing endpoints are public; favorites require authentication.

GET /api/v1/marketplace/markers Public

Map markers, optionally filtered by category (cat) or query (q).

ParamTypeInDescription
catintqueryOptional
qstringqueryOptional
Response
{ "success": true, "markers": [ { "id": 1, "lat": 50.45, "lng": 30.52, "name": "Acme" } ] }
GET /api/v1/marketplace/profile/{id} Public

Marketplace profile card.

Response
{ "success": true, "profile": { … } }
GET /api/v1/marketplace/categories Public

Category tree.

Response
{ "success": true, "categories": [ … ] }
POST /api/v1/marketplace/favorite/{id} Auth

Toggle a profile as favorite.

Response
{ "success": true, "favorited": true }
GET /api/v1/marketplace/favorites Auth

List your favorites.

Response
{ "success": true, "favorites": [ … ], "ids": [1, 5] }