Search for assets
GET
https://api.woosmap.com/stores/search
Used to retrieve assets from query.
Authorization
Query Parameters
query
string
lat
number
lng
number
radius
number
encoded_polyline
string
stores_by_page
integer
page
integer
zone
boolean
Response
Assets successfully retrieved
type
string
features
object[]
Show 3 propertiesHide 3 properties
Show 12 propertiesHide 12 properties
Show 4 propertiesHide 4 properties
Show 5 propertiesHide 5 properties
Show 8 propertiesHide 8 properties
Show 2 propertiesHide 2 properties
Show 2 propertiesHide 2 properties
Show 2 propertiesHide 2 properties
Show 2 propertiesHide 2 properties
Show 2 propertiesHide 2 properties
Show 2 propertiesHide 2 properties
Show 2 propertiesHide 2 properties
Show 3 propertiesHide 3 properties
Show 8 propertiesHide 8 properties
Show 2 propertiesHide 2 properties
Show 2 propertiesHide 2 properties
pagination
object
curl -L 'https://api.woosmap.com/stores/search/?lat=51.50976&lng=-0.145276&radius=300&key=YOUR_PUBLIC_API_KEY' \
-H 'Referer: http://localhost'
const requestOptions = {
method: "GET",
redirect: "follow"
};
fetch("https://api.woosmap.com/stores/search/?lat=51.50976&lng=-0.145276&radius=300&key=YOUR_PUBLIC_API_KEY", requestOptions)
.then((response) => response.text())
.then((result) => console.log(result))
.catch((error) => console.error(error));
import requests
url = "https://api.woosmap.com/stores/search/?lat=51.50976&lng=-0.145276&radius=300&key=YOUR_PUBLIC_API_KEY"
payload = {}
headers = {
'Referer': 'http://localhost'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"properties": {
"store_id": "2354",
"name": "Berkeley Street/Berkeley Square",
"contact": {
"phone": "02076295779",
"website": "https://www.starbucks.com/store-locator/store/2354/berkeley-street-berkeley-square-27-berkeley-st-berkeley-square-london-eng-w-1-x-5-"
},
"address": {
"lines": [
"27 Berkeley St",
"London, ENG W1X 5AD"
],
"country_code": "GB",
"city": "London",
"zipcode": "W1X 5AD"
},
"user_properties": {
"take_away": "available"
},
"tags": [
"WA",
"WF",
"CD",
"DR",
"XO"
],
"types": [
"Coffee shop"
],
"last_updated": "2022-11-10T13:23:53.564829+00:00",
"distance": 135.28682936,
"open": {
"open_now": true,
"open_hours": [
{
"end": "18:00",
"start": "06:30"
}
],
"week_day": 2,
"current_slice": {
"end": "18:00",
"start": "06:30"
}
},
"weekly_opening": {
"1": {
"hours": [
{
"end": "18:00",
"start": "06:30"
}
],
"isSpecial": false
},
"2": {
"hours": [
{
"end": "18:00",
"start": "06:30"
}
],
"isSpecial": false
},
"3": {
"hours": [
{
"end": "18:00",
"start": "06:30"
}
],
"isSpecial": false
},
"4": {
"hours": [
{
"end": "18:00",
"start": "06:30"
}
],
"isSpecial": false
},
"5": {
"hours": [
{
"end": "18:00",
"start": "06:30"
}
],
"isSpecial": false
},
"6": {
"hours": [
{
"end": "17:00",
"start": "08:00"
}
],
"isSpecial": false
},
"7": {
"hours": [
{
"end": "17:00",
"start": "08:00"
}
],
"isSpecial": false
},
"timezone": "Europe/London"
},
"opening_hours": {
"usual": {
"1": [
{
"end": "18:00",
"start": "06:30"
}
],
"2": [
{
"end": "18:00",
"start": "06:30"
}
],
"3": [
{
"end": "18:00",
"start": "06:30"
}
],
"4": [
{
"end": "18:00",
"start": "06:30"
}
],
"5": [
{
"end": "18:00",
"start": "06:30"
}
],
"6": [
{
"end": "17:00",
"start": "08:00"
}
],
"7": [
{
"end": "17:00",
"start": "08:00"
}
]
},
"special": {},
"timezone": "Europe/London"
}
},
"geometry": {
"type": "Point",
"coordinates": [
-0.14408,
51.5088
]
}
}
],
"pagination": {
"page": 1,
"pageCount": 1
}
}
{
"detail": "Incorrect authentication credentials. Please check or use a valid API Key"
}
{
"detail": "This Woosmap API is not enabled for this project."
}
{
"detail": "The rate limit for this endpoint has been exceeded"
}