Get a Store
curl --request GET \
--url https://api.orbbit.co/v1/stores/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.orbbit.co/v1/stores/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.orbbit.co/v1/stores/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": {
"id": "shopify_store_01k3a1b2c3d4e5f6g7h8j9k0mn",
"domain": "example-coffee.com",
"name": "Example Coffee Co.",
"country": "US",
"industry": "cpg",
"category": "coffee_and_tea",
"product_count": 84,
"variant_count": 212,
"min_price": 7.5,
"median_price": 18,
"max_price": 129,
"crawled_at": "2026-08-31T00:00:00.000Z",
"source": "shopify",
"shopify_domain": "example-coffee.myshopify.com",
"description": "Small-batch coffee roasted in Portland.",
"city": "Portland",
"province": "Oregon",
"currency": "USD",
"published_products_count": 84,
"common_crawl": {
"release": "CC-MAIN-2026-33",
"harmonic_rank": 1843221,
"host_count": 3
},
"categories": [
{
"category": "coffee_and_tea",
"product_count": 71,
"share": 0.845
},
{
"category": "soft_drinks_and_refreshments",
"product_count": 13,
"share": 0.155
}
]
}
}{
"error": {
"type": "unauthorized",
"message": "Missing or malformed Authorization: Bearer header"
}
}{
"error": {
"type": "forbidden",
"message": "This key is not scoped to get-store"
}
}{
"error": {
"type": "not_found",
"message": "Unknown branded food: data_branded_food_01k0000000000000000000000"
}
}Shopify
Get a Store
One store in full: profile, Common Crawl rank, and category mix.
Requires the get-store scope.
GET
/
v1
/
stores
/
{id}
Get a Store
curl --request GET \
--url https://api.orbbit.co/v1/stores/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.orbbit.co/v1/stores/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.orbbit.co/v1/stores/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": {
"id": "shopify_store_01k3a1b2c3d4e5f6g7h8j9k0mn",
"domain": "example-coffee.com",
"name": "Example Coffee Co.",
"country": "US",
"industry": "cpg",
"category": "coffee_and_tea",
"product_count": 84,
"variant_count": 212,
"min_price": 7.5,
"median_price": 18,
"max_price": 129,
"crawled_at": "2026-08-31T00:00:00.000Z",
"source": "shopify",
"shopify_domain": "example-coffee.myshopify.com",
"description": "Small-batch coffee roasted in Portland.",
"city": "Portland",
"province": "Oregon",
"currency": "USD",
"published_products_count": 84,
"common_crawl": {
"release": "CC-MAIN-2026-33",
"harmonic_rank": 1843221,
"host_count": 3
},
"categories": [
{
"category": "coffee_and_tea",
"product_count": 71,
"share": 0.845
},
{
"category": "soft_drinks_and_refreshments",
"product_count": 13,
"share": 0.155
}
]
}
}{
"error": {
"type": "unauthorized",
"message": "Missing or malformed Authorization: Bearer header"
}
}{
"error": {
"type": "forbidden",
"message": "This key is not scoped to get-store"
}
}{
"error": {
"type": "not_found",
"message": "Unknown branded food: data_branded_food_01k0000000000000000000000"
}
}