πŸ“ ZIP: USA 🌀 Weather: 72Β°F πŸ‡ΊπŸ‡Έ CitySpot USA
πŸ” Login / Sign Up 🏠 Home πŸ“£ City Feed πŸ›’ Marketplace 🧰 Services 🏒 Businesses πŸ’Ό Jobs πŸ“š Guides πŸ“Œ Highlights πŸ“Š Leads πŸ“° Press πŸ“Ί Advertising πŸ›’ Cart πŸ“¬ Contact
πŸ‡ΊπŸ‡Έ USA Small Business Marketplace β€” Support Local Sellers Today!

CitySpot API

Fast. Secure. Developer-Ready. Integrate CitySpot data into your apps.

πŸ“˜ Overview

The CitySpot API allows developers to access local business listings, marketplace items, services, reviews, and more. All responses are returned in JSON format.

Base URL: https://www.cityspotdirectory.com/api/

πŸ”Œ API Endpoints

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

πŸ§ͺ Example Request

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"
    }
  ]
}