Get Asset from ID
GET
https://api.woosmap.com/stores/{storeId}
Used to retrieve an asset from his storeId
Authorization
Path Parameters
storeId
string required
Response
Asset successfully retrieved
type
string
properties
object
Show 12 propertiesHide 12 properties
Show 4 propertiesHide 4 properties
Show 5 propertiesHide 5 properties
Show 8 propertiesHide 8 properties
Show 3 propertiesHide 3 properties
Show 8 propertiesHide 8 properties
Show 2 propertiesHide 2 properties
geometry
object
Show 2 propertiesHide 2 properties
curl -L 'https://api.woosmap.com/stores/10031/?key=YOUR_PUBLIC_API_KEY' \
-H 'Referer: http://localhost'
const requestOptions = {
method: "GET",
redirect: "follow"
};
fetch("https://api.woosmap.com/stores/10031/?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/10031/?key=YOUR_PUBLIC_API_KEY"
payload = {}
headers = {
'Referer': 'http://localhost'
}
response = requests.request("GET", url, headers=headers, data=payload)
print(response.text)
{
"type": "Feature",
"properties": {
"store_id": "10031",
"name": "Santa Rosa & Yolanda",
"contact": {
"phone": "707-527-1006",
"website": "https://www.starbucks.com/store-locator/store/10031/santa-rosa-yolanda-2688-santa-rosa-ave-santa-rosa-ca-954077625-us"
},
"address": {
"lines": [
"2688 Santa Rosa Ave",
"Santa Rosa, CA 95407"
],
"country_code": "US",
"city": "Santa Rosa",
"zipcode": "954077625"
},
"user_properties": {
"take_away": "available"
},
"tags": [
"DT",
"WA",
"CD",
"DR",
"LB",
"GO",
"XO",
"MX",
"NB",
"BE",
"LU"
],
"types": [
"Coffee shop"
],
"last_updated": "2022-11-10T13:26:55.066524+00:00",
"open": {
"open_now": false,
"open_hours": [
{
"end": "20:00",
"start": "05:00"
}
],
"week_day": 2,
"next_opening": {
"day": "2025-09-16",
"start": "05:00",
"end": "20:00"
}
},
"weekly_opening": {
"1": {
"hours": [
{
"end": "20:00",
"start": "05:00"
}
],
"isSpecial": false
},
"2": {
"hours": [
{
"end": "20:00",
"start": "05:00"
}
],
"isSpecial": false
},
"3": {
"hours": [
{
"end": "20:00",
"start": "05:00"
}
],
"isSpecial": false
},
"4": {
"hours": [
{
"end": "20:00",
"start": "05:00"
}
],
"isSpecial": false
},
"5": {
"hours": [
{
"end": "20:00",
"start": "05:00"
}
],
"isSpecial": false
},
"6": {
"hours": [
{
"end": "20:00",
"start": "05:00"
}
],
"isSpecial": false
},
"7": {
"hours": [
{
"end": "20:00",
"start": "05:00"
}
],
"isSpecial": false
},
"timezone": "America/Los_Angeles"
},
"opening_hours": {
"usual": {
"1": [
{
"end": "20:00",
"start": "05:00"
}
],
"2": [
{
"end": "20:00",
"start": "05:00"
}
],
"3": [
{
"end": "20:00",
"start": "05:00"
}
],
"4": [
{
"end": "20:00",
"start": "05:00"
}
],
"5": [
{
"end": "20:00",
"start": "05:00"
}
],
"6": [
{
"end": "20:00",
"start": "05:00"
}
],
"7": [
{
"end": "20:00",
"start": "05:00"
}
]
},
"special": {},
"timezone": "America/Los_Angeles"
}
},
"geometry": {
"type": "Point",
"coordinates": [
-122.712924,
38.41244
]
}
}
{
"detail": "Incorrect authentication credentials. Please check or use a valid API Key"
}
{
"detail": "This Woosmap API is not enabled for this project."
}