Appearance
Instagram
Manage Instagram Business accounts, publish media, and access insights.
| Detail | Value |
|---|---|
| Category | Social Media |
| Base URL | https://graph.facebook.com/v19.0 |
| Authentication | OAuth2 |
| Endpoints | 5 |
| Connector key | instagram |
Using Instagram in a workflow
- Go to Connections and click New Connection.
- Pick Instagram from the marketplace.
- Enter your credentials (see Authentication above for what's expected).
- In a workflow, drop an API Call node and select this connection.
- Pick the operation you need from the Operation dropdown — the full list is below.
Available endpoints
| Endpoint | Summary |
|---|---|
GET /{userId} | Get user profile |
GET /{userId}/media | List user media |
POST /{userId}/media | Create a media container |
POST /{userId}/media_publish | Publish media |
GET /{userId}/insights | Get account insights |
Each endpoint is documented in full below. Use the outline on the right to jump to one.
GET /{userId}
Get user profile
| Detail | Value |
|---|---|
| Operation ID | social.getProfile |
| Method | GET |
| Path | /{userId} |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
userId | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Instagram connection from the Connection dropdown.
- In the Operation dropdown, select
social.getProfile. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Instagram API reference.
GET /{userId}/media
List user media
| Detail | Value |
|---|---|
| Operation ID | social.listMedia |
| Method | GET |
| Path | /{userId}/media |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
userId | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Instagram connection from the Connection dropdown.
- In the Operation dropdown, select
social.listMedia. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Instagram API reference.
POST /{userId}/media
Create a media container
| Detail | Value |
|---|---|
| Operation ID | social.createMedia |
| Method | POST |
| Path | /{userId}/media |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
userId | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Instagram connection from the Connection dropdown.
- In the Operation dropdown, select
social.createMedia. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Instagram API reference.
POST /{userId}/media_publish
Publish media
| Detail | Value |
|---|---|
| Operation ID | social.publishMedia |
| Method | POST |
| Path | /{userId}/media_publish |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
userId | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Instagram connection from the Connection dropdown.
- In the Operation dropdown, select
social.publishMedia. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Instagram API reference.
GET /{userId}/insights
Get account insights
| Detail | Value |
|---|---|
| Operation ID | social.getInsights |
| Method | GET |
| Path | /{userId}/insights |
Parameters
| Name | Location | Type | Required |
|---|---|---|---|
userId | path | string | Yes |
Using this endpoint in a workflow
- Add an API Call node to your workflow.
- Pick your Instagram connection from the Connection dropdown.
- In the Operation dropdown, select
social.getInsights. - Fill in the parameter fields that appear. Use
{{...}}to reference upstream values.
Required fields are marked — fill them or the call will fail at runtime.
What it returns
The API Call node writes the response to the workflow context:
{
status: 200,
success: true,
data: { ...response body from the API... },
latencyMs: 142
}Reference response fields downstream as {{nodeId.data.path}}. The exact response shape is documented on the upstream Instagram API reference.