Welcome offer: 20,000 credits for $1. Try it now β†’

Back to blog
AnnouncementsProduct

Introducing the The Hog API

One API to give your AI agents fresh, structured context across people, companies, social, and the open web.

The Hog TeamJun 12, 20261 min read

Agents have gotten remarkably good at reasoning. What they still lack is a clean, real-time view of the web β€” the kind of context a human researcher would gather before making a decision. Today we're opening up The Hog: one API to search, scrape, enrich, and monitor the live web, with output that's ready for an agent to consume.

Why we built it

Every team building agents ends up rebuilding the same fragile stack: a scraper that breaks weekly, a parsing layer held together with regex, and a queue of proxies nobody wants to own. We wanted that whole layer to disappear behind a single endpoint.

  • Search the open web and get structured results, not raw HTML
  • Scrape any page and receive clean, agent-ready markdown
  • Enrich people and companies from a name or a domain
  • Monitor sources and get notified when something changes

A first request

Point your agent at one endpoint and start turning live signals into structured intelligence:

const res = await fetch("https://api.thehog.ai/v1/search", {
  method: "POST",
  headers: {
    Authorization: `Bearer ${process.env.HOG_API_KEY}`,
    "Content-Type": "application/json",
  },
  body: JSON.stringify({
    query: "series B fintech companies hiring in the EU",
    limit: 10,
  }),
});
 
const { results } = await res.json();

Every response is normalized, deduplicated, and typed β€” so your agent spends its tokens reasoning, not parsing.

Less parsing. More reasoning. That's the whole idea.

What's next

This is the first slice of a much larger surface. Enrichment and monitoring are rolling out over the coming weeks. If you're building something that needs the freshest possible context, we'd love to have you in the early cohort.