Skip to main content
GET
/
integration-settings
/
{id}
Get integration settings and tools
curl --request GET \
  --url https://api.postiz.com/public/v1/integration-settings/{id} \
  --header 'Authorization: <api-key>'
{
  "output": {
    "rules": "Instagram should have at least one attachment, if it's a story, it can have only one picture",
    "maxLength": 2200,
    "settings": {
      "type": "object"
    },
    "tools": [
      {
        "methodName": "audioSearch",
        "description": "Search audio (music or original sounds) to attach to a Reel via the \"audio\" setting, an empty query returns trending audio",
        "dataSchema": [
          {
            "key": "q",
            "type": "string",
            "description": "Search query, leave empty for trending audio"
          },
          {
            "key": "type",
            "type": "string",
            "description": "Either \"music\" or \"original_sound\", defaults to \"music\""
          }
        ]
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Your Postiz API key

Path Parameters

id
string
required

The integration ID

Response

Settings and tools for the integration

output
object