Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.postiz.com/llms.txt

Use this file to discover all available pages before exploring further.

Instagram Standalone posts use the same settings schema as Facebook Business-linked Instagram. The only difference is the __type value - everything else (post type, trial reels, collaborators, image arrays) is identical.

Settings Schema

{
  "settings": {
    "__type": "instagram-standalone",
    "post_type": "post",
    "is_trial_reel": false,
    "collaborators": []
  }
}
For the full field reference (including post_type values, trial reel options, and collaborator format), see the Instagram settings page.

Fields

FieldTypeRequiredDescription
__typestringYesMust be instagram-standalone
post_typestringYesType of Instagram post (see Instagram reference)
is_trial_reelbooleanNoWhether to post as a trial reel
graduation_strategystringNoGraduation strategy for trial reels
collaboratorsarrayNoTagged collaborators (see Instagram reference)

Complete Example

{
  "type": "schedule",
  "date": "2024-12-14T10:00:00.000Z",
  "shortLink": false,
  "tags": [],
  "posts": [
    {
      "integration": {
        "id": "your-instagram-standalone-integration-id"
      },
      "value": [
        {
          "content": "New product launch! Check it out.",
          "image": [
            {
              "id": "image-id",
              "path": "https://uploads.postiz.com/launch.png"
            }
          ]
        }
      ],
      "settings": {
        "__type": "instagram-standalone",
        "post_type": "post",
        "is_trial_reel": false,
        "collaborators": []
      }
    }
  ]
}
For Story, Reel, and collaborator examples, see the Instagram complete examples - swap __type: "instagram" for __type: "instagram-standalone".