Shopify Integration¶
Connect Falara directly to your Shopify store to translate products, collections, and content.
Shopify App
For most use cases, install the Falara Shopify App instead of using the API directly. The app provides a visual interface for managing translations.
Connect Your Store¶
Generate OAuth URL¶
GET /v1/integrations/shopify/connect
Start the Shopify OAuth flow. Redirect the user to the returned URL to authorize Falara for their store.
Authentication: X-API-Key header
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
shop |
string | yes | Shopify store domain (e.g., mystore.myshopify.com) |
Response 200 OK
Check Connection Status¶
GET /v1/integrations/shopify/status
Check whether a Shopify store is connected.
Authentication: X-API-Key header
Response 200 OK
{
"status": "active",
"shop_domain": "mystore.myshopify.com",
"shop_name": "My Store",
"connected_at": "2026-03-15T10:30:00Z"
}
Get Plugin API Key¶
GET /v1/integrations/shopify/pickup-key
Retrieve the API key to use with the Shopify plugin for write-back operations.
Authentication: X-API-Key header
Response 200 OK
Disconnect Store¶
DELETE /v1/integrations/shopify/disconnect
Disconnect the Shopify store and revoke all access tokens.
Authentication: X-API-Key header
Response 200 OK
Errors¶
| Status | Reason |
|---|---|
401 Unauthorized |
Missing or invalid API key |
403 Forbidden |
Shopify integration not available on current plan |
404 Not Found |
No Shopify store connected |
400 Bad Request |
Invalid shop domain |