Fast. Secure. Developer-Ready. Integrate CitySpot data into your apps.
The CitySpot API allows developers to access local business listings, marketplace items, services, reviews, and more. All responses are returned in JSON format.
https://www.cityspotdirectory.com/api/
| Endpoint | Description | Method |
|---|---|---|
/businesses.php |
Fetch business directory listings | GET |
/business.php?id=ID |
Fetch a single business by ID | GET |
/marketplace.php |
Fetch marketplace product listings | GET |
/product.php?id=ID |
Fetch one product by ID or slug | GET |
/services.php |
Local service providers | GET |
/reviews.php?type=product&id=ID |
Retrieve reviews for a listing | GET |
Get all marketplace items:
GET https://www.cityspotdirectory.com/api/marketplace.php
JSON Response Example:
{
"status": "success",
"count": 12,
"products": [
{
"id": 14,
"title": "Golf Cart",
"price": 800.00,
"image": "/uploads/shop/golf.png",
"category": "Vehicles",
"slug": "golf-cart"
}
]
}