Snapchat API
Posting to Snapchat via RelayAPI — features, limits, and platform-specific settings.
Overview
RelayAPI supports publishing to Snapchat through the unified API. Connect your Snapchat account and start posting programmatically.
Getting Started
- Connect your Snapchat account via the dashboard or Connect Account API
- Use the account ID as a target when creating posts
curl -X POST https://api.relayapi.dev/v1/posts \
-H "Authorization: Bearer rlay_live_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"content": "Hello from RelayAPI!",
"targets": ["acc_snapchat_123"]
}'Content Limits
| Property | Limit |
|---|---|
| Character limit | 250 |
| Supported media | Images (1), Video (1), Stories |
| Media size limits | 5 MB images, 32 MB video |
Platform-Specific Settings
Use platform_overrides to customize content for Snapchat:
{
"content": "Default content for all platforms",
"platform_overrides": {
"snapchat": {
"content": "Custom content for Snapchat"
}
}
}Rate Limits
Snapchat enforces its own rate limits. RelayAPI automatically queues and retries posts when platform rate limits are reached. See Rate Limits for details.