Skip to main content
The Agents category covers APIs designed to support autonomous, goal-directed workflows. These actors go beyond simple data extraction — they reason over inputs, take sequences of actions, and return structured intelligence. Whether you need financial analysis, content generation pipelines, or multi-modal processing, this category has tools that fit directly into agentic architectures.
This category contains 1,336 APIs, updated daily from Apify’s marketplace.

Top APIs in this category

APIs are ranked by Bayesian quality score, which balances average rating with review volume to surface consistently high-quality actors — not just ones with a single glowing review.
APIRatingDescription
AlphaScrape⭐ 5.0 (20)Analyzes earnings-day data, revenue trends, growth signals, and executive commentary to predict stock movement with confidence scores.
YouTube Video Transcript⭐ 5.0 (16)Extracts full transcripts with timestamps and metadata from YouTube videos, including title, description, views, likes, and channel info.
Universal News Article Intelligence Agent⭐ 5.0 (11)High-fidelity news normalization for agentic RAG. Extracts clean Markdown and full-text from premium domains like Bloomberg, WSJ, and the Financial Times.
Google Maps Emails Scraper⭐ 5.0 (10)Scrapes thousands of businesses from Google Maps, then visits their websites to extract email addresses and social links in a single run.
Meta (Facebook) Ad Library Scraper⭐ 4.71 (9)Scrapes Meta ads including title, description, images, videos, CTA, and metadata from the Facebook Ad Library.
AI Web Scraper⭐ 4.96 (8)AI-first scraper that extracts structured data from any website using natural-language prompts, with no hard-coded selectors.
RAG Knowledge Graph Builder⭐ 5.0 (7)Crawls pages, chunks content into 500–1000 token segments, and generates hypothetical questions per chunk for RAG-optimized retrieval.
Sora Scraper⭐ 5.0 (7)Extracts posts, media, user profiles, comments, and engagement metrics from OpenAI’s Sora community for trend analysis and research.
3D Print Generator⭐ 5.0 (7)AI-powered text/image to 3D model generator that produces printable STL/GLB files with mesh validation and printer optimization.
AI Web Agent⭐ 4.20 (7)Uses natural language prompts to browse the web, click elements, fill forms, extract data, and take screenshots via the OpenAI API.
AI Brand Visibility⭐ 4.17 (7)Tracks how AI platforms like ChatGPT, Gemini, and Perplexity recommend your brand versus competitors across industries.
Rightmove Land Registry Address Finder⭐ 5.0 (6)Matches Rightmove history with Land Registry sold data to uncover full UK property addresses including house numbers.
OpenRouter⭐ 5.0 (5)Proxy actor for any LLM model via OpenRouter without managing separate provider accounts. Pay-per-event pricing.
Dataset Query Engine⭐ 4.62 (5)Accepts natural language queries, converts them to SQL, and retrieves results from an Apify dataset.
AI Model Comparison⭐ 5.0 (3)Sends prompts to multiple AI models in parallel and uses AI to synthesize the single best response.

Use with your agent

The example below calls the RAG Knowledge Graph Builder to crawl a documentation site and get back pre-chunked, retrieval-optimized content.
import requests

response = requests.post(
    "https://api.apify.com/v2/acts/cspnair~rag-knowledge-graph-builder/run-sync-get-dataset-items",
    headers={"Authorization": "Bearer YOUR_APIFY_TOKEN"},
    json={
        "startUrls": [{"url": "https://docs.example.com"}],
        "maxCrawlPages": 50,
        "chunkSize": 750
    }
)

chunks = response.json()
for chunk in chunks:
    print(chunk["text"], chunk["hypotheticalQuestions"])

What you can build

  • Research agents that ingest news articles, financial filings, and web pages then synthesize actionable summaries
  • Data collection agents that autonomously navigate websites, fill forms, and extract structured records without manual selectors
  • Content generation pipelines that pull transcripts, chunk them for context, and feed them to an LLM for Q&A or summarization
  • Brand intelligence agents that track competitor visibility across AI-generated search results and recommendation surfaces

AI APIs

LLM pipelines, RAG systems, and ML tooling

Automation APIs

Scheduled tasks, bulk collection, and workflow orchestration

Build docs developers (and LLMs) love