{
   "info": {
      "name": "Unified SOCIAL API",
      "description": "One API to Rule Them All\n\n## API Endpoints (Data Centers)\n\nUnified.to operates multiple data centers. You can switch between them using the `base_url` variable:\n\n- **US (Default)**: https://api.unified.to\n- **EU**: https://api-eu.unified.to\n- **AU**: https://api-au.unified.to\n\nTo change the data center:\n1. Go to the collection's \"Variables\" tab\n2. Update the `base_url` value to your preferred endpoint\n3. Save the collection\n\n## Authentication\n\nTo use this API, you need an API Token. Follow these steps to obtain your token:\n\n1. Visit the Unified.to API Keys page: https://app.unified.to/apikeys, https://app-eu..unified.to/apikeys, https://app-au.unified.to/apikeys\n2. Log in to your account (or create one if you haven't already)\n3. Generate a new API key or copy an existing one\n4. Use the API key as a Bearer token in the Authorization header\n\n## Setup in Postman\n\n**Option 1: Using Collection Variables (Recommended)**\n1. Go to the collection's \"Variables\" tab\n2. Set the `api_token` variable to your API key\n3. Save the collection\n4. All requests will automatically use this token\n\n**Option 2: Using Collection Authorization**\n1. Go to the collection's \"Authorization\" tab\n2. Select \"Bearer Token\" as the type\n3. Enter `{{api_token}}` in the \"Token\" field (or paste your API key directly)\n4. Save the collection\n\nFor more information, visit: https://docs.unified.to",
      "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
      "updatedAt": "2026-09-04T20:36:52.000Z"
   },
   "item": [
      {
         "name": "Social Posts",
         "item": [
            {
               "name": "Create a post",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/social/{{connection_id}}/post",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "social",
                        "{{connection_id}}",
                        "post"
                     ],
                     "query": [
                        {
                           "key": "fields",
                           "description": "Fields to return"
                        },
                        {
                           "key": "raw",
                           "description": "Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"
                        }
                     ]
                  },
                  "method": "POST",
                  "body": {
                     "mode": "raw"
                  },
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "Retrieve a post",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/social/{{connection_id}}/post/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "social",
                        "{{connection_id}}",
                        "post",
                        "{{id}}"
                     ],
                     "query": [
                        {
                           "key": "fields",
                           "description": "Fields to return"
                        },
                        {
                           "key": "raw",
                           "description": "Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"
                        }
                     ]
                  },
                  "method": "GET",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "Update a post",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/social/{{connection_id}}/post/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "social",
                        "{{connection_id}}",
                        "post",
                        "{{id}}"
                     ],
                     "query": [
                        {
                           "key": "fields",
                           "description": "Fields to return"
                        },
                        {
                           "key": "raw",
                           "description": "Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"
                        }
                     ]
                  },
                  "method": "PUT",
                  "body": {
                     "mode": "raw"
                  },
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "Remove a post",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/social/{{connection_id}}/post/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "social",
                        "{{connection_id}}",
                        "post",
                        "{{id}}"
                     ],
                     "query": []
                  },
                  "method": "DELETE",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "List all posts",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/social/{{connection_id}}/post",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "social",
                        "{{connection_id}}",
                        "post"
                     ],
                     "query": [
                        {
                           "key": "limit",
                           "description": ""
                        },
                        {
                           "key": "offset",
                           "description": ""
                        },
                        {
                           "key": "updated_gte",
                           "description": "Return only results whose updated date is equal or greater to this value"
                        },
                        {
                           "key": "sort",
                           "description": ""
                        },
                        {
                           "key": "order",
                           "description": ""
                        },
                        {
                           "key": "query",
                           "description": "Query string to search. eg. email address or name"
                        },
                        {
                           "key": "profile_id",
                           "description": "The profile ID to filter by"
                        },
                        {
                           "key": "fields",
                           "description": "Fields to return"
                        },
                        {
                           "key": "raw",
                           "description": "Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"
                        }
                     ]
                  },
                  "method": "GET",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            }
         ]
      },
      {
         "name": "Social Profiles",
         "item": [
            {
               "name": "Retrieve a profile",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/social/{{connection_id}}/profile/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "social",
                        "{{connection_id}}",
                        "profile",
                        "{{id}}"
                     ],
                     "query": [
                        {
                           "key": "fields",
                           "description": "Fields to return"
                        },
                        {
                           "key": "raw",
                           "description": "Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"
                        }
                     ]
                  },
                  "method": "GET",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "List all profiles",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/social/{{connection_id}}/profile",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "social",
                        "{{connection_id}}",
                        "profile"
                     ],
                     "query": [
                        {
                           "key": "limit",
                           "description": ""
                        },
                        {
                           "key": "offset",
                           "description": ""
                        },
                        {
                           "key": "updated_gte",
                           "description": "Return only results whose updated date is equal or greater to this value"
                        },
                        {
                           "key": "sort",
                           "description": ""
                        },
                        {
                           "key": "order",
                           "description": ""
                        },
                        {
                           "key": "query",
                           "description": "Query string to search. eg. email address or name"
                        },
                        {
                           "key": "parent_id",
                           "description": "The parent ID to filter by"
                        },
                        {
                           "key": "fields",
                           "description": "Fields to return"
                        },
                        {
                           "key": "raw",
                           "description": "Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"
                        }
                     ]
                  },
                  "method": "GET",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            }
         ]
      },
      {
         "name": "Social Reviews",
         "item": [
            {
               "name": "Retrieve a review",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/social/{{connection_id}}/review/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "social",
                        "{{connection_id}}",
                        "review",
                        "{{id}}"
                     ],
                     "query": [
                        {
                           "key": "fields",
                           "description": "Fields to return"
                        },
                        {
                           "key": "raw",
                           "description": "Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"
                        }
                     ]
                  },
                  "method": "GET",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "Update a review",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/social/{{connection_id}}/review/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "social",
                        "{{connection_id}}",
                        "review",
                        "{{id}}"
                     ],
                     "query": [
                        {
                           "key": "fields",
                           "description": "Fields to return"
                        },
                        {
                           "key": "raw",
                           "description": "Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"
                        }
                     ]
                  },
                  "method": "PUT",
                  "body": {
                     "mode": "raw"
                  },
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "List all reviews",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/social/{{connection_id}}/review",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "social",
                        "{{connection_id}}",
                        "review"
                     ],
                     "query": [
                        {
                           "key": "limit",
                           "description": ""
                        },
                        {
                           "key": "offset",
                           "description": ""
                        },
                        {
                           "key": "updated_gte",
                           "description": "Return only results whose updated date is equal or greater to this value"
                        },
                        {
                           "key": "sort",
                           "description": ""
                        },
                        {
                           "key": "order",
                           "description": ""
                        },
                        {
                           "key": "query",
                           "description": "Query string to search. eg. email address or name"
                        },
                        {
                           "key": "profile_id",
                           "description": "The profile ID to filter by"
                        },
                        {
                           "key": "fields",
                           "description": "Fields to return"
                        },
                        {
                           "key": "raw",
                           "description": "Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"
                        }
                     ]
                  },
                  "method": "GET",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            }
         ]
      },
      {
         "name": "Social Insights",
         "item": [
            {
               "name": "Retrieve an insight",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/social/{{connection_id}}/insight/{{id}}",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "social",
                        "{{connection_id}}",
                        "insight",
                        "{{id}}"
                     ],
                     "query": [
                        {
                           "key": "fields",
                           "description": "Fields to return"
                        },
                        {
                           "key": "raw",
                           "description": "Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"
                        }
                     ]
                  },
                  "method": "GET",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            },
            {
               "name": "List all insights",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/social/{{connection_id}}/insight",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "social",
                        "{{connection_id}}",
                        "insight"
                     ],
                     "query": [
                        {
                           "key": "limit",
                           "description": ""
                        },
                        {
                           "key": "offset",
                           "description": ""
                        },
                        {
                           "key": "updated_gte",
                           "description": "Return only results whose updated date is equal or greater to this value"
                        },
                        {
                           "key": "sort",
                           "description": ""
                        },
                        {
                           "key": "order",
                           "description": ""
                        },
                        {
                           "key": "query",
                           "description": "Query string to search. eg. email address or name"
                        },
                        {
                           "key": "profile_id",
                           "description": "The profile ID to filter by"
                        },
                        {
                           "key": "post_id",
                           "description": "The post ID to filter by"
                        },
                        {
                           "key": "start_gte",
                           "description": "The start date to filter by"
                        },
                        {
                           "key": "end_lt",
                           "description": "The end date to filter by"
                        },
                        {
                           "key": "fields",
                           "description": "Fields to return"
                        },
                        {
                           "key": "raw",
                           "description": "Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar"
                        }
                     ]
                  },
                  "method": "GET",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            }
         ]
      }
   ],
   "variable": [
      {
         "key": "base_url",
         "value": "https://api.unified.to",
         "type": "string"
      },
      {
         "key": "api_token",
         "value": "YOUR_API_TOKEN_HERE",
         "type": "string"
      }
   ]
}