CLI Platform Commands
Inspect connected accounts and discover platform-specific ids (Instagram locations, licensed audio, Pinterest boards) that other commands take as input.
Accounts
| Command | Description |
|---|---|
accounts:list | List connected accounts with channel ids, platforms, supported content types, and Pinterest boards |
accounts:get <id> | Full details for one account, including platform-specific data such as Pinterest board ids |
Code
The channel ids in the output are what posts:create --channels expects.
Location search
| Command | Description |
|---|---|
locations:search "<name>" | Search taggable locations (minimum 2 characters, --q or positional). Flags: --platform <instagram|threads> (default instagram), and for Threads --latitude + --longitude instead of a name |
With the default --platform instagram it searches Facebook Places and returns
location_id values for posts:create --location-id (Instagram place tags).
Only places with a street address can be tagged.
Code
With --platform threads it searches Threads locations and returns ids for
posts:create --threads-location-id. The two id namespaces are different: a
Facebook Place ID is not a Threads location id, so never reuse one as the
other. Threads also accepts coordinates instead of a name. Threads location
tagging is currently rolling out; until Meta approves the permission the
search answers not_available, and Threads connections made before the
permission existed answer threads_reauth_required until reconnected.
Code
Audio search
| Command | Description |
|---|---|
audio:search ["<song/artist>"] | Search Meta's licensed music catalog for Instagram Reels. Empty query returns trending audio. Flags: --type <music|original_sound> |
Returns audio_id values for posts:create --instagram-audio-id (reels only).
Code