Skip to main content
GET
https://searchcompany-main.up.railway.app
/
api
/
shopify
/
status
/
{org_slug}
Shopify Status
curl --request GET \
  --url https://searchcompany-main.up.railway.app/api/shopify/status/{org_slug}
{
  "connected": true,
  "shop_domain": "<string>"
}

Get Shopify Status

Returns whether a Shopify store is connected for the organization.

Path Parameters

org_slug
string
required
The organization slug

Response

connected
boolean
Whether Shopify is connected
shop_domain
string
The connected shop domain (null if not connected)

Example

curl https://api.searchcompany.ai/api/shopify/status/my-org-slug \
  -H "Authorization: Bearer <token>"
{
  "connected": true,
  "shop_domain": "my-store.myshopify.com"
}