List Snapchat profiles
For headless flows. Returns Snapchat Public Profiles the user can post to. Use X-Connect-Token from the redirect URL.
API key authentication - use your Late API key as a Bearer token
In: header
Query Parameters
Your Late profile ID
Temporary Snapchat access token from the OAuth callback redirect
Header Parameters
Short-lived connect token from the OAuth redirect
Response Body
application/json
application/json
curl -X GET "https://getlate.dev/api/v1/connect/snapchat/select-profile?profileId=string&tempToken=string" \ -H "X-Connect-Token: string"{
"publicProfiles": [
{
"id": "abc123-def456",
"display_name": "My Brand",
"username": "mybrand",
"profile_image_url": "https://cf-st.sc-cdn.net/...",
"subscriber_count": 15000
},
{
"id": "xyz789-uvw012",
"display_name": "Side Project",
"username": "sideproject",
"profile_image_url": "https://cf-st.sc-cdn.net/...",
"subscriber_count": 5000
}
]
}{
"error": "Unauthorized"
}Check Telegram status PATCH
Poll this endpoint to check if a Telegram access code has been used to connect a channel/group. Recommended polling interval: 3 seconds. Status values: pending (waiting for user), connected (channel/group linked), expired (generate a new code).
Select Snapchat profile POST
Complete the Snapchat connection flow by saving the selected Public Profile. Snapchat requires a Public Profile to publish content. Use X-Connect-Token if connecting via API key.