FleetbaseFleetbase

Store

Store endpoints describe the active storefront or network being browsed. Use them to retrieve store profile data, locations, payment gateways, tags, search results, and network store listings.

The Store object

A store describes a storefront business, including branding, contact information, operating options, locations, media, and network membership.
Attributes
idstringoptional

Public identifier of the store.

namestringoptional

Store name.

descriptionstringoptional

Store description.

websitestringoptional

Store website URL.

emailstringoptional

Store email address.

phonestringoptional

Store phone number.

tagsarray of stringsoptional

Store tags.

currencycurrencyoptional

Store currency code.

countrystringoptional

Country code derived from the store currency.

optionsobjectoptional

Public store option values.

logo_urlstringoptional

Store logo URL.

backdrop_urlstringoptional

Store backdrop image URL.

ratingnumberoptional

Store rating.

onlinebooleanoptional

Whether the store is online.

alertablebooleanoptional

Whether the store can receive order alerts.

is_networkbooleanoptional

Whether the resource is a storefront network.

is_storebooleanoptional

Whether the resource is a store.

created_attimestampoptional

Time the store was created.

updated_attimestampoptional

Time the store was last updated.

The Store object
{
  "id": "store_3Xb9kL2",
  "name": "Acme Market",
  "description": "Local grocery and delivery.",
  "website": "https://example.com",
  "email": "orders@example.com",
  "phone": "+15555550100",
  "tags": [
    "grocery"
  ],
  "currency": "USD",
  "country": "US",
  "options": {},
  "logo_url": "https://files.example.com/logo.png",
  "backdrop_url": null,
  "rating": 4.8,
  "online": true,
  "alertable": true,
  "is_network": false,
  "is_store": true,
  "slug": "acme-market",
  "created_at": "2026-05-07T09:30:00Z",
  "updated_at": "2026-05-07T09:30:00Z"
}
GET/v1/search

Search Store

Search Storefront

Query parameters
querystringoptional

Query value for this store request.

limitstringoptional

Limit value for this store request.

offsetstringoptional

Offset value for this store request.

GET/v1/search
curl https://api.fleetbase.io/v1/search?query=&limit=&offset= \
  -H "Authorization: Bearer flb_live_…"
GET/v1/about

About Store

About Store

GET/v1/about
curl https://api.fleetbase.io/v1/about \
  -H "Authorization: Bearer flb_live_…"
GET/v1/lookup

Lookup Store

Lookup Store

GET/v1/lookup
curl https://api.fleetbase.io/v1/lookup \
  -H "Authorization: Bearer flb_live_…"
GET/v1/locations

List Locations

List Locations

GET/v1/locations
curl https://api.fleetbase.io/v1/locations \
  -H "Authorization: Bearer flb_live_…"
GET/v1/locations

Retrieve Location

Retrieve Location

GET/v1/locations
curl https://api.fleetbase.io/v1/locations \
  -H "Authorization: Bearer flb_live_…"
GET/v1/stores

List Network Stores

List Network Stores

Query parameters
querystringoptional

Query value for this store request.

limitstringoptional

Limit value for this store request.

offsetstringoptional

Offset value for this store request.

storestringoptional

Store value for this store request.

GET/v1/stores
curl https://api.fleetbase.io/v1/stores?query=&limit=&offset=&store= \
  -H "Authorization: Bearer flb_live_…"
GET/v1/tags

List Tags

List Tags

GET/v1/tags
curl https://api.fleetbase.io/v1/tags \
  -H "Authorization: Bearer flb_live_…"
GET/v1/gateways

Payment gateways for the current store

Payment gateways for the current store

Query parameters
limitstringoptional

Limit value for this store request.

offsetstringoptional

Offset value for this store request.

GET/v1/gateways
curl https://api.fleetbase.io/v1/gateways?limit=&offset= \
  -H "Authorization: Bearer flb_live_…"
GET/v1/gateways/{id}

Specific payment gateway given the id

Specific payment gateway given the id

GET/v1/gateways/{id}
curl https://api.fleetbase.io/v1/gateways/{id} \
  -H "Authorization: Bearer flb_live_…"
Store | Fleetbase