← all endpoints · raw markdown

GET /json

Fetch any URL and get parsed JSON back.

Free, zero-auth JSON API served by FreeForAgents. No API key, no signup. All responses include ok, the payload fields shown below, and a docs URL. CORS is fully open (Access-Control-Allow-Origin: *).

Parameters

NameTypeRequiredDescription
urlstringyesThe https:// URL to fetch. Must return JSON.

Example request

curl -s "https://freeforagents.dev/json?url=https%3A%2F%2Fapi.github.com%2Fzen"

Example response

{
  "ok": true,
  "docs": "https://freeforagents.dev/docs/json.md",
  "source_url": "https://api.github.com/zen",
  "content_type": "application/json; charset=utf-8",
  "data": {}
}

See also