URL → Structured Data API for AI agents — UnifAPI

UnifAPI’s URL → Structured API turns any URL into a typed JSON object matching a schema you supply — an LLM-extraction call wrapped as one endpoint.

Endpoint

curl https://api.unifapi.com/v1/scrape/structured \
  -H "Authorization: Bearer $UNIFAPI_KEY" \
  -d '{
    "url": "https://example.com/pricing",
    "schema": {
      "type": "object",
      "properties": {
        "plans": {
          "type": "array",
          "items": {
            "type": "object",
            "properties": {
              "name": {"type": "string"},
              "price_usd_monthly": {"type": "number"},
              "features": {"type": "array", "items": {"type": "string"}}
            }
          }
        }
      }
    }
  }'

Returns JSON matching the schema, ready to drop into a database or another agent step.

What it’s for

→ Start free · Browse all APIs