GETspaces

Get Twitter Space Details

Get complete data for any Twitter Space — title, host info, speakers, listener count, schedule, and recording status.

Average response time: 75ms

Code Examples

const response = await fetch(
  'https://scrapebadger.com/v1/twitter/spaces/1eaKbrPAqbwKX',
  { headers: { 'x-api-key': 'YOUR_API_KEY' } }
);
const space = await response.json();
console.log(space.data.title, space.data.participant_count);
Response
{
  "data": {
    "id": "1eaKbrPAqbwKX",
    "title": "The Future of AI",
    "state": "live",
    "host": { "username": "host_user", "followers_count": 50000 },
    "participant_count": 1250,
    "is_ticketed": false,
    "scheduled_start": "2025-01-20T18:00:00Z"
  }
}

API Reference

GET/v1/twitter/spaces/{space_id}
ParameterTypeRequiredDescription
space_idstringRequiredThe Twitter Space ID

Use Cases

Social Listening

Monitor brand mentions, keywords, and conversations across Twitter in real time to understand public sentiment and emerging topics.

Content Curation

Aggregate top-performing content by topic or industry to fuel newsletters, social feeds, and content marketing calendars.

Media Monitoring

Track how news stories propagate on Twitter, measure story amplification, and identify key distributors of information.

Academic Research

Collect large-scale Twitter datasets for computational social science, NLP research, political analysis, and network studies.

Trend Tracking

Detect emerging trends, viral content, and breaking news before they peak using real-time trending topic data.

Influencer Research

Identify and vet influencers by analyzing follower quality, engagement rates, audience demographics, and content authenticity.

Frequently Asked Questions

Yes. Metadata for ended Spaces remains accessible including title, host, and participant count at peak.

Space IDs appear in the URL when viewing a Space on Twitter (e.g., twitter.com/i/spaces/1eaKbrPAqbwKX).

The API returns metadata only. Audio recordings are only available through Twitter if the host enabled recording.

Yes. The response includes the host and current or past speakers with their profile data.