Bring Your Own Key
Step-by-step instructions to get API keys and tokens for every social media platform supported by BuyCrowds. Some platforms require no setup at all.
Platform Overview
| Platform | Auth Type | Difficulty | Token Lifetime | Free? |
|---|---|---|---|---|
| Instagram / Facebook | OAuth + Graph API Token | Hard | 60 days | Yes |
| TikTok | OAuth Token | Medium | 24 hours (refresh: 365d) | Yes |
| YouTube | API Key | Easy | Never expires | Yes |
| Twitter / X | Bearer Token | Easy | Never expires | Free tier limited |
| Spotify | Client ID + Secret | Easy | Never expires (credentials) | Yes |
| GitHub | Personal Access Token | Easy | Configurable (90d rec.) | Yes |
| None needed | None | N/A | Yes | |
| Bluesky | None needed | None | N/A | Yes |
| OAuth Token | Hard | 60 days | Restricted | |
| Twitch | Client ID + OAuth Token | Medium | 60 days | Yes |
| WhatsApp Business | Business API Token | Hard | 24h temp / permanent | Yes |
| Telegram | Bot Token | Easy | Never expires | Yes |
| OAuth Token | Medium | 30 days | Yes | |
| Snapchat | Login Kit | Medium | Varies | Yes |
| Google Business Profile | OAuth + API Access | Hard | 1 hour (refresh available) | Yes |
Instagram / Facebook (Meta)
Graph API Access Token + App ID
What you need: Graph API Access Token + App ID
Setup Steps
- Go to developers.facebook.com
- Click "My Apps" then "Create App"
- Select app type: "Business"
- Fill in app name and contact email
- In the app dashboard, add the "Instagram Graph API" product
- Go to Settings → Basic → copy your App ID and App Secret
- Go to the Graph API Explorer:
https://developers.facebook.com/tools/explorer/ - Select your app from the dropdown, then click "Generate Access Token"
- Select permissions:
instagram_basic,instagram_manage_insights,pages_show_list,pages_read_engagement - Click "Generate" and copy the token
- To get your IG User ID: call
GET /me/accountsto get Page ID, thenGET /{page_id}?fields=instagram_business_accountto get IG User ID - Use in BuyCrowds:
?token=YOUR_TOKEN&ig_user_id=YOUR_IG_ID
Details
Scopes Needed
instagram_basic, instagram_manage_insights, pages_show_listToken Expires
60 days (long-lived)
Refresh Method
/oauth/access_token?grant_type=fb_exchange_tokenApp Review: Required for production use. Test mode works for your own accounts only.
📖 Official Docs →
TikTok
Display API Access Token
What you need: Display API Access Token
Setup Steps
- Go to developers.tiktok.com
- Click "Manage Apps" then "Create App"
- Add products: "Login Kit" + "Content Posting API"
- Set redirect URI to your callback URL
- Submit app for review (or use Sandbox mode for testing)
- Get Client Key and Client Secret from app settings
- Implement OAuth flow: redirect user to
https://www.tiktok.com/v2/auth/authorize/ - Exchange code for access token via
POST /v2/oauth/token/ - Use in BuyCrowds:
?token=act.YOUR_ACCESS_TOKEN
Details
Scopes
user.info.basic, user.info.stats, video.listToken Expires
24 hours
Refresh Token
Valid for 365 days
Rate Limits
600 req/min per endpoint
YouTube
YouTube Data API v3 Key
What you need: YouTube Data API v3 Key
Setup Steps
- Go to console.cloud.google.com
- Create a new project (or select an existing one)
- Go to "APIs & Services" → "Library"
- Search for "YouTube Data API v3" → click Enable
- Go to "APIs & Services" → "Credentials"
- Click "Create Credentials" → "API Key"
- Copy the API key
- (Recommended) Click "Restrict Key" → select "YouTube Data API v3" only
- Use in BuyCrowds:
?key=YOUR_API_KEY
No OAuth needed! An API key gives read access to all public data.
Details
Default Quota
10,000 units/day
Cost: Search
100 units per call
Cost: Video/Channel List
1 unit per call
Quota Increase
Google Cloud Console → Quotas
Twitter / X
Bearer Token
What you need: Bearer Token
Setup Steps
- Go to developer.x.com
- Sign up for a developer account (free tier available)
- Create a "Project" → Create an "App"
- Go to app "Keys and tokens" tab
- Under "Bearer Token" → click Generate
- Copy the bearer token (starts with
AAAA...) - Use in BuyCrowds:
?token=YOUR_BEARER_TOKEN
Pricing Tiers
Free Tier
1 app, limited endpoints
Basic Tier ($200/mo)
Most endpoints, 10K tweets/month read
Rate: Recent Search
450/15min (app), 180/15min (user)
Spotify
Client ID + Client Secret
What you need: Client ID + Client Secret
Setup Steps
- Go to developer.spotify.com/dashboard
- Click "Create App"
- Fill in app name, description, and redirect URI
- Set "Which API/SDKs are you planning to use?" → Web API
- In app settings, copy Client ID and Client Secret
- Use in BuyCrowds:
?client_id=YOUR_ID&client_secret=YOUR_SECRET
How it works: BuyCrowds uses the Client Credentials flow (no user login needed) to get a token, then calls the Spotify API on your behalf.
Details
Can Access
Artist info, top tracks, albums, related artists, search
Cannot Access (no user OAuth)
User playlists, listening history, playback
Rate Limits
~180 req/min (rolling 30s window)
GitHub
Personal Access Token (PAT)
What you need: Personal Access Token (PAT)
Setup Steps
- Go to github.com/settings/tokens
https://github.com/settings/tokens - Click "Generate new token" → "Fine-grained" (recommended)
- Set expiration (90 days recommended)
- Select "Public Repositories (read-only)" at minimum
- Click "Generate token"
- Copy the token (starts with
ghp_orgithub_pat_) - Use in BuyCrowds:
?token=YOUR_PAT
Details
Without Token
60 requests/hour (by IP)
With Token
5,000 requests/hour
Access
User profiles, repos, orgs, starred, events, followers, contributions
Classic vs Fine-grained: Fine-grained tokens are more secure because they can be scoped to specific repos and permissions.
📖 Official Docs →
Reddit
No authentication needed
What you need: Nothing! Reddit's public .json API works without authentication.
Just Call the Endpoint
No setup required. The Reddit public API works out of the box.
GET /v1/public/reddit/torvalds/posts
Details
Without Auth
10 requests/minute (by IP)
With OAuth (optional)
100 requests/minute
Want higher limits? Register an app at reddit.com/prefs/apps for OAuth-level rate limits.
📖 Official Docs →
Bluesky
No authentication needed
What you need: Nothing! Bluesky has a fully public API.
Just Call the Endpoint
No setup required. Bluesky's AT Protocol API is fully open.
GET /v1/public/bluesky/jay.bsky.team/followers
Details
Public API Base
https://public.api.bsky.app/xrpc/
Rate Limits
Generous, no published limits for public read endpoints
LinkedIn
OAuth Access Token (restricted API)
What you need: OAuth Access Token (restricted API)
Setup Steps
- Go to linkedin.com/developers
- Create an app → fill in company page, logo, etc.
- Request products: "Sign In with LinkedIn using OpenID Connect"
- In the Auth tab, copy Client ID and Client Secret
- Add your redirect URI
- Implement OAuth 2.0 authorization flow
- Use in BuyCrowds:
?token=YOUR_ACCESS_TOKEN
Important: LinkedIn API is heavily restricted. Most endpoints require partnership or approval from LinkedIn.
Details
Can Access
Your own profile (
r_liteprofile), email (r_emailaddress), post on behalf (w_member_social)Cannot Easily Access
Other people's profiles, follower lists, company analytics (requires Marketing API partner status)
Twitch
Client ID + OAuth Token
What you need: Client ID + OAuth Token
Setup Steps
- Go to dev.twitch.tv/console
- Register application → fill in name, OAuth redirect URL, and category
- Copy Client ID from app settings
- Get an app access token:
POST https://id.twitch.tv/oauth2/token?client_id=X&client_secret=Y&grant_type=client_credentials
- Use in BuyCrowds:
?client_id=YOUR_ID&token=YOUR_TOKEN
Details
App Token (no user login)
Public channel data, streams, users
User Token (with OAuth)
Additional: subscriptions, followers count
Rate Limits
800 requests/minute with token
WhatsApp Business
Business API Access Token
What you need: Business API Access Token
Setup Steps
- Go to developers.facebook.com
- Create app → select "Business" type
- Add "WhatsApp" product
- In WhatsApp → Getting Started, get a test phone number
- Generate a temporary access token (valid 24 hours)
- For production: create a System User in Business Manager → generate a permanent token
- Use in BuyCrowds API: Configure via
/api/social-networkswithnetwork="whatsapp"
Details
Scopes
whatsapp_business_management, whatsapp_business_messagingSending Limits
1 message per 6 seconds per recipient, tier-based daily limits
Telegram
Bot Token
What you need: Bot Token
Setup Steps
- Open Telegram → search @BotFather
- Send
/newbot - Choose a name and username for your bot
- BotFather gives you a token like:
123456:ABC-DEF1234ghIkl-zyx57W2v1u123ew11 - Use in BuyCrowds API: Configure via
/api/social-networkswithnetwork="telegram"
Details
Capabilities
Send messages, get channel members count, send media
Token Lifetime
Never expires (unless revoked)
Pinterest
OAuth Token via App ID + Secret
What you need: App ID + App Secret (OAuth flow)
Setup Steps
- Go to developers.pinterest.com
- Create an app → get App ID and App Secret
- Implement OAuth flow with scopes:
boards:read,pins:read,user_accounts:read
Snapchat
Login Kit Client ID
What you need: Login Kit Client ID
Setup Steps
- Go to kit.snapchat.com
- Create an app → configure Login Kit
- Get your Client ID
Google Business Profile
OAuth + API Access (requires approval)
What you need: OAuth credentials + GBP API access (approval required)
Setup Steps
- Use the same Google Cloud project as YouTube (or create a new one)
- Enable "My Business Account Management API" + "Business Information API"
- Create OAuth credentials (not just API key — requires user consent)
- Apply for GBP API access at Google's form (approval may take days)
Note: Unlike YouTube, Google Business Profile requires OAuth (user consent) and a separate API access application. This is not instant.
📖 Official Docs →