🔗 Source APIs Documentation

← Back to Store Catalog

Store Details API

Retrieves specific details of a single store.

Endpoint URL: /api/v1/store/stores/{store}

Method: GET

Parameters: store (Path parameter: ID or slug of the store)

Example Request

curl -X GET "http://localhost:8000/api/v1/store/stores/1" \
  -H "Accept: application/json" \
  -H "Authorization: Bearer YOUR_TOKEN"

Live Endpoint Tester

GET

Categories API

Retrieves available store categories.

Endpoint URL: /api/v1/store/store-categories

Method: GET

Parameters: None required

Example Request

curl -X GET "http://localhost:8000/api/v1/store/store-categories" \
  -H "Accept: application/json"

Live Endpoint Tester

GET

Products API

Retrieves products for a specific store.

Endpoint URL: /api/v1/store/products

Method: GET

Parameters: store_id (Query parameter to filter products by store)

Example Request

curl -X GET "http://localhost:8000/api/v1/store/products?store_id=1" \
  -H "Accept: application/json"

Live Endpoint Tester

GET

Offers API

Retrieves promotional offers.

Endpoint URL: /api/v1/store/offers

Method: GET

Parameters: store_id (Query parameter to filter offers by store)

Example Request

curl -X GET "http://localhost:8000/api/v1/store/offers?store_id=1" \
  -H "Accept: application/json"

Live Endpoint Tester

GET