← back
Riveter

Riveter

85

AI search agent API that combines web search, scraping, and structured data extraction into a single endpoint — tell it what you need via a prompt and get clean JSON back.

API KeyFreemiumJSONBot Blocking: NoneNo CCweb-scrapingsearchstructured-datadata-enrichmentai-agentspdf-extractionbatch-processing

Pros

  • + Single API replaces search + scraper + proxy + browser infra — agents make one call instead of orchestrating multiple tools
  • + Prompt-based config with structured output (custom enums, date formats, JSON schemas) means agents get predictable, typed responses
  • + Handles PDFs, images, and multi-page navigation autonomously — agents don't need separate tools for different content types

Cons

  • - No official Python or JS SDK and no public OpenAPI spec — agents must use raw HTTP and can't auto-generate tool definitions
  • - Rate limits and detailed paid pricing not publicly documented, making it hard to plan agent workload capacity

Integration

example.py
import requests
response = requests.post(    "https://api.riveterhq.com/v1/search",    headers={        "Authorization": "Bearer YOUR_API_KEY",        "Content-Type": "application/json"    },    json={        "prompt": "Find the CEO and founding year",        "query": "Acme Corp",        "output_schema": {            "ceo": "string",            "founded": "integer"        }    })print(response.json())

Details

Category
Web Scraping
Pricing
Freemium
Free Tier
First 500 searches free
Rate Limit
Not publicly documented
Verified
2026-03-31

Score Breakdown

Base +50
OpenAPI Spec (No) 0
Auth Complexity (API Key) +10
Response Format (JSON) +10
Bot Blocking (None) +10
No Credit Card (Yes) +5
Completely Free (No) 0
Total 85

Related APIs in Web Scraping