### Shop Information Response Example Source: https://api-docs.pancake.vn This is an example of a successful JSON response when retrieving shop information. ```JSON { "shops": [ { "avatar_url": "https://statics.pancake.vn/user-content-dev2.pancake.vn/2022/7/6/8678250807b2285e2752ac2cbbf43925f19a677c.jpeg", "name": "Shop thời trang", "id": 6036602, "link_post_marketer": [ { "ad_account_id": null, "id": "949f1396-f6fa-45d9-93b6-4c37503a9950", "inserted_at": "2025-08-21T03:02:04", "marketer": "cee3c05e-5f85-43c4-b27e-889b99c50097", "multiple_post": [], "multiple_source": [ { "account": "2284322048329488", "key": "-1", "page_id": "2284322048329488" } ], "shop_id": 6036602, "type": "source" } ], "pages": [ { "id": "104438181227821", "name": "Quần áo", "platform": "facebook", "settings": { "auto_create_order": true }, "shop_id": 20 } ] } ], "success": true } ``` -------------------------------- ### Get Shop Information Source: https://api-docs.pancake.vn Retrieves a list of shops associated with the API key. Ensure you replace 'YOUR_SECRET_TOKEN' with your actual API key. ```Shell curl 'https://pos.pages.fm/api/v1/shops?api_key=YOUR_SECRET_TOKEN' ``` -------------------------------- ### Shop Information Source: https://api-docs.pancake.vn Retrieves a list of shops associated with the authenticated account. Requires an API key for authentication. ```APIDOC ## GET /shops ### Description Retrieves a list of shops associated with the authenticated account. ### Method GET ### Endpoint https://pos.pages.fm/api/v1/shops ### Parameters #### Query Parameters - **api_key** (string) - Required - Your API key for authentication. ### Request Example ```shell curl -X GET "https://pos.pages.fm/api/v1/shops?api_key=YOUR_SECRET_TOKEN" ``` ### Response #### Success Response (200) - **shops** (array) - A list of shop objects. - **avatar_url** (string) - The URL of the shop's avatar. - **name** (string) - The name of the shop. - **id** (integer) - The unique identifier for the shop. - **link_post_marketer** (array) - Information about marketer links. - **pages** (array) - A list of pages associated with the shop. - **success** (boolean) - Indicates if the request was successful. #### Response Example ```json { "shops": [ { "avatar_url": "https://statics.pancake.vn/user-content-dev2.pancake.vn/2022/7/6/8678250807b2285e2752ac2cbbf43925f19a677c.jpeg", "name": "Shop thời trang", "id": 6036602, "link_post_marketer": [ { "ad_account_id": null, "id": "949f1396-f6fa-45d9-93b6-4c37503a9950", "inserted_at": "2025-08-21T03:02:04", "marketer": "cee3c05e-5f85-43c4-b27e-889b99c50097", "multiple_post": [], "multiple_source": [ { "account": "2284322048329488", "key": "-1", "page_id": "2284322048329488" } ], "shop_id": 6036602, "type": "source" } ], "pages": [ { "id": "104438181227821", "name": "Quần áo", "platform": "facebook", "settings": { "auto_create_order": true }, "shop_id": 20 } ] } ], "success": true } ``` ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.