Skip to main content

Overview

Before making API calls, use anysite describe to discover available endpoints, explore their parameters, and understand the expected input/output formats.

List All Endpoints

anysite describe
This displays a categorized list of all 118+ available endpoints grouped by platform (LinkedIn, Instagram, Twitter/X, Reddit, YouTube, etc.).

Search Endpoints

Find endpoints by keyword:
anysite describe --search "linkedin"
anysite describe --search "company"
anysite describe --search "search"
Example output:
Found 5 endpoints matching "company":
  /api/linkedin/company              Get LinkedIn company profile
  /api/linkedin/company/employees    Get company employees
  /api/linkedin/company/posts        Get company posts
  /api/linkedin/search/companies     Search LinkedIn companies
  /api/instagram/user                Get Instagram user profile

Inspect Endpoint Details

Get full details about a specific endpoint:
anysite describe /api/linkedin/company
Example output:
Endpoint: /api/linkedin/company
Method:   POST
Description: Get LinkedIn company profile

Parameters:
  company (string, required) - Company URL or identifier

Response fields:
  name, description, industry, specialties,
  employeeCount, headquarter, logo, ...

JSON Output

Get endpoint details in JSON format for automation:
anysite describe /api/linkedin/company --json

Common Endpoint Categories

CategoryExamplesEndpoint Count
LinkedInUsers, companies, posts, search, employees39+
InstagramProfiles, posts, comments, followers10+
Twitter/XUsers, tweets, search, followers10+
RedditSubreddits, posts, comments, users8+
YouTubeChannels, videos, comments, search8+
GitHubRepositories, users, organizations5+
GoogleSearch, news, maps5+
AmazonProducts, reviews, search5+
SEC EDGARFilings, companies3+
OtherWeb parsing, Trustpilot, Y Combinator, etc.20+
Always run anysite describe before building dataset pipelines or batch jobs to verify endpoint names and required parameters.

Next Steps

Single API Calls

Make your first data extraction request

Batch Processing

Process multiple inputs in parallel