Store Locations
The Store Location object
idstringoptionalPublic identifier of the store location.
storestringoptionalPublic ID of the store.
store_dataobjectoptionalStore resource when requested.
namestringoptionalLocation name.
placeobjectoptionalFleetOps place for the store location.
hoursarray of objectsoptionalOperating hours for the location.
created_attimestampoptionalTime the store location was created.
updated_attimestampoptionalTime the store location was last updated.
{
"id": "store_location_7Lk2mQ1",
"store": "store_3Xb9kL2",
"name": "Downtown",
"place": null,
"hours": [],
"created_at": "2026-05-07T09:30:00Z",
"updated_at": "2026-05-07T09:30:00Z"
}/v1/store-locationsQuery Store Locations
Returns locations for the authenticated storefront context. Network keys receive locations belonging to active member stores for network storefront maps, pickup selection, and multi-store delivery origins; store keys receive only their own locations. Requests without a storefront context receive an error.
querystringoptionalSearch member stores and return their matching locations.
taggedstringoptionalComma-separated member-store tags to match.
idsstringoptionalComma-separated store-location public IDs to include.
excludestringoptionalComma-separated store-location public IDs to exclude.
with_storebooleanoptionalInclude the location's hydrated member store, logo, and backdrop.
location[latitude]numberoptionalCustomer latitude used to calculate and order location distance.
location[longitude]numberoptionalCustomer longitude used to calculate and order location distance.
limitintegeroptionalMaximum number of locations to return; defaults to 30.
offsetintegeroptionalNumber of matching locations to skip.
/v1/store-locationscurl https://api.fleetbase.io/v1/store-locations?query=&tagged=&ids=&exclude=&with_store=true&location%5Blatitude%5D=&location%5Blongitude%5D=&limit=&offset= \
-H "Authorization: Bearer flb_live_…"