DEV Community

NexusCore
NexusCore

Posted on

I built a tiny HTTP gateway so agents get structured JSON from any URL

Why

Most agent stacks still end with "scrape this page and hope the HTML stays stable." I wanted something boring and paid: URL + schema → validated JSON, with a free tier for eval and a \ starter if you just want to poke it.

Live: agentapigw.dpdns.org

What it does

  • Send a URL + a schema type (product / article / company)
  • Get structured JSON back
  • Polar checkout for starter / hobby / pro

API shape (high level)

http
POST /v1/...

Health:

ash
curl -s https://agentapigw.dpdns.org/health

Buy:

  • Free tier for eval
  • \ starter if free is too tight

Who it's for

People wiring agents that need structured web data without babysitting parsers.

Feedback

If you break it, tell me. Repo: https://github.com/ZachDreamZ/agent-api-gateway

Top comments (0)