Instaconnect configuration

API Access

Available Only in the Pro Plan


Step 1: Enable the API

● On the main view (Home), look for the section called "API." By default, this section is disabled.

● Check the checkbox to enable the API. Doing so will automatically generate the API keys (API Key and Secret Key).


Step 2: Use the API Keys

● Copy the generated keys (API Key and Secret Key).

● Use them to connect your Shopify store with a headless storefront or any application you wish to integrate with the API.


Note: Be sure to store the keys in a secure location. These keys are essential for accessing the API’s functionality.


Usage example

curl -X GET "https://api.example.com/endpoint?shopID=YOUR_SHOP_ID&feedID=YOUR_FEED_ID" \
  -H "Intaconnect-Token: YOUR_INTACONNECT_TOKEN" \
  -H "Intaconnect-Secret: YOUR_INTACONNECT_SECRET"

Response example

{
  "settings": {
    "desktop": {
      "postCount": 0,
      "postOnClickAction": "",
      "spaceBetweenPosts": 0,
      "postBorderRadius": 0,
      "columnCount": 0,
      "rowCount": 0,
      "buttonBackgroundColor": "",
      "buttonText": "",
      "buttonTextColor": "",
      "buttonBorderRadius": 0,
      "customCss": "",
      "animationEntry": "",
      "animationHover": ""
    },
    "mobile": {
      "postCount": 0,
      "postOnClickAction": "",
      "spaceBetweenPosts": 0,
      "postBorderRadius": 0,
      "columnCount": 0,
      "rowCount": 0,
      "buttonBackgroundColor": "",
      "buttonText": "",
      "buttonTextColor": "",
      "buttonBorderRadius": 0,
      "customCss": "",
      "animationEntry": "",
      "animationHover": ""
    }
  },
  "selectedFeedLayout": "",
  "isActive": false,
  "posts": [
    {
      "_id": "",
      "shopId": "",
      "instagramUsername": "",
      "mediaProductType": "",
      "mediaType": "",
      "media": [
        {
          "mediaId": "",
          "url": "",
          "type": "",
          "thumbnail": "",
          "tags": []
        }
      ],
      "postUrl": "",
      "postTimestamp": "",
      "postId": "",
      "caption": "",
      "clicks": [],
      "__v": 0,
      "createdAt": "",
      "updatedAt": ""
    }
  ]
}