What Are Data APIs?
Data APIs provide structured access to social media data across multiple platforms. Instead of integrating with each platform separately, you use a single API endpoint pattern to fetch profiles, posts, and analytics from LinkedIn, YouTube, TikTok, X, Instagram, Reddit, and Facebook.Unified Interface
All platform APIs follow the same pattern:GET /v1/linkedin/get-company-details?username=microsoftGET /v1/youtube/get-channel-details?username=@mkbhdGET /v1/x/get-user-details?username=elonmusk
Available Platforms
Endpoints: 50+Company profiles, employee data, job listings, posts, and school information.
YouTube
Endpoints: 30+Channels, videos, playlists, comments, search, and video transcripts.
TikTok
Endpoints: 25+User profiles, videos, hashtags, sounds, and trending content.
X (Twitter)
Endpoints: 40+User profiles, tweets, search, timelines, followers, and lists.
Endpoints: 20+Profiles, posts, stories, reels, and hashtag search.
Endpoints: 15+Subreddits, posts, comments, and user profiles.
Endpoints: 20+Pages, posts, groups, and page insights.
Common Operations
Most platforms support these operation types:| Operation | Description | Example |
|---|---|---|
get-*-details | Fetch a single resource | get-company-details |
get-*-posts | List posts/content | get-user-posts |
search-* | Search for resources | search-companies |
get-*-followers | List followers/connections | get-user-followers |
Response Format
All responses follow a consistent structure:Data Normalization
While each platform has unique data, agntdata normalizes common fields:| Field | Normalized As |
|---|---|
| User/profile ID | id |
| Display name | name |
| Username/handle | username |
| Profile image | profileImage |
| Follower count | followerCount |
| Post/content date | ISO 8601 timestamp |
Proxy Mode
For advanced use cases, you can also access the raw upstream API response:Credits
Each API call consumes credits based on the endpoint:| Endpoint Type | Credits |
|---|---|
| Basic profile lookup | 1 |
| Detailed profile | 2-5 |
| Search/list operations | 5-10 |
| Bulk operations | 10+ |
Next Steps
Request Format
Learn about request structure and parameters.
Pagination
Handle paginated responses.
API Reference
Browse all available endpoints.
Error Handling
Handle errors gracefully.