Integration Guidesn8n
Setup Reference
Finding IDs and API format details for n8n integration.
Detailed reference for configuring your n8n workflows with Cue.
Finding Your IDs
With the Cue community node, you typically don't need to manually find IDs - the dropdowns show your profiles and accounts directly. But if you need IDs for expressions or the Code node:
Profile ID
Enable Developer Mode in Settings > API, then use Copy ID from the profile menu in Settings > Profiles.
Or fetch via API:
curl https://api.oncue.so/v1/profiles \
-H "Authorization: Bearer cue_sk_your_key_here"Social Account IDs
With Developer Mode enabled, use Copy ID from the account menu in Settings > Profiles.
Or list via API:
curl https://api.oncue.so/v1/social-accounts \
-H "Authorization: Bearer cue_sk_your_key_here"Creating an API Key
- Log in to Cue
- Go to Settings > API
- Click New Key
- Give it a descriptive name (e.g., "n8n production")
- Copy the key immediately - you won't see it again
See Authentication for more details.
API Request Format
The Cue node handles request formatting automatically. For reference, the underlying API uses this format:
{
"profileId": "prf_xxx",
"platforms": {
"sac_twitter_xxx": {
"items": [{ "content": "Hello Twitter!" }]
},
"sac_linkedin_xxx": {
"items": [{ "content": "Hello LinkedIn!" }]
}
},
"scheduledAt": "2025-01-15T10:00:00Z"
}Key Fields
| Field | Type | Required | Description |
|---|---|---|---|
profileId | string | Yes | Your Cue profile ID |
platforms | object | Yes | Map of social account IDs to content |
scheduledAt | string | No | ISO 8601 datetime. Omit to create a draft. |
autoSchedule | boolean | No | Set to true to auto-schedule at optimal times per platform |
publishNow | boolean | No | Set to true to publish immediately |