Skip to main content

Overview

agntdata provides unified access to social media data through a consistent API. All endpoints follow the same authentication, request format, and response structure regardless of the underlying platform.

Social APIs

Access data from major social media platforms:

LinkedIn

Company profiles, employee data, job listings, posts, and more.

YouTube

Channel data, video metadata, playlists, comments, and search.

TikTok

Creator profiles, video data, hashtag analytics, and trending content.

X (Twitter)

User profiles, tweets, timelines, followers, and search.

Instagram

Profile data, posts, stories, reels, and hashtag search.

Reddit

Subreddit data, posts, comments, and user profiles.

Facebook

Page data, posts, groups, and insights.

API Playground

Each endpoint page includes an interactive playground where you can:
  • Test requests with your API key
  • See real responses
  • Copy code snippets in multiple languages
  • Understand parameters and response schemas

Common Patterns

All endpoints follow consistent patterns:

URL Structure

GET https://api.agntdata.dev/v1/{platform}/{operation}

Authentication

Authorization: Bearer YOUR_API_KEY

Response Format

{
  "success": true,
  "data": { ... },
  "meta": {
    "costCents": 1,
    "purchasedBalanceCents": 949,
    "subscriptionRemainingCents": 500,
    "cached": false,
    "latencyMs": 245
  }
}

Finding Endpoints

Use the sidebar navigation to browse endpoints by platform. Each platform section is organized by resource type:
  • Profiles/Users β€” Individual and company profiles
  • Content β€” Posts, videos, tweets
  • Search β€” Finding resources by query
  • Analytics β€” Engagement and statistics

Credit Costs

Credit costs vary by endpoint. Check each endpoint’s documentation for specific costs.

Next Steps

Quickstart

Make your first API request.

Request Format

Learn about request structure.

Authentication

Set up your API key.

Error Handling

Handle errors gracefully.