Skip to main content
Follow these three steps to make your first API call.

Step 1: Create an Account

Sign up for a free ScrapeBadger account. No credit card required.

Sign Up Free

Create your account and get free credits to start.

Step 2: Generate an API Key

Navigate to your dashboard and create a new API key. You can create multiple keys for different projects.

Go to Dashboard

Create and manage your API keys.

Step 3: Make Your First Request

Use your API key to authenticate requests. Include it in the x-api-key header.
curl -X GET "https://scrapebadger.com/v1/twitter/users/elonmusk/by_username" \
  -H "x-api-key: YOUR_API_KEY"

Example Response

{
  "id": "44196397",
  "username": "elonmusk",
  "name": "Elon Musk",
  "description": "Read @TheBoringCompany...",
  "followers_count": 170000000,
  "following_count": 500,
  "tweet_count": 45000,
  "verified": true,
  "verified_type": "Business",
  "profile_image_url": "https://pbs.twimg.com/...",
  "created_at": "2009-06-02T20:12:29.000Z"
}
The response includes full user profile data including verification status, follower counts, and account metadata.

Next Steps

Authentication

Learn about API key management and security best practices.

API Reference

Explore all 50+ endpoints for tweets, users, lists, and more.