# ClearCheck College Lookup

> ClearCheck College Lookup is a paid API for AI agents from loonie-toll.onrender.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a college verdict with cost, size, admission rate, completion rate, median earnings, and debt for a named US institution.

## Facts

- Endpoint: GET https://loonie-toll.onrender.com/college
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clearcheck-college-lookup-132b8d38
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MvleaB_L9STMoQDKQdwRG

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability clearcheck-college-lookup-132b8d38
```

Example prompt: What's the full breakdown for Vanderbilt University — tuition, admission rate, graduation rate, typical debt, and median earnings 10 years out?

## When to prefer this

Use this endpoint when you need a fast, structured summary of a specific US college's cost, selectivity, size, and graduate outcomes in a single call. Prefer it over manual College Scorecard lookups when building agents that answer questions about higher education affordability, admissions, or ROI. It is best suited for named institution lookups rather than broad searches across many schools.

## Known failure modes

- Institution name not found — returns empty schools array or low-confidence matches
- Ambiguous name with multiple matches — returns top N results up to limit, no single bestMatch
- Missing scorecard data — some fields (e.g. admissionRatePct) may be null if the institution doesn't report
- State filter not applied correctly — omitting state for common names like 'Central University' may return unintended schools
- Service unavailable on Render cold start — may return 502 or timeout on first request after inactivity

## How this service works

College verdict: cost, size, admission rate, completion, median earnings and debt for a named US institution.

## Output

Returns a JSON object with a best-match school record and a list of matching schools. Each record includes institution name, city, state, control type (public/private), website, undergraduate enrollment, in-state and out-of-state tuition, average net price, admission rate, Pell grant rate, completion rate, median earnings 10 years after entry, median debt for completers, and a College Scorecard ID. Also includes a plain-text 'verdict' summarizing the institution's profile, and a 'reasons' array explaining the match.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "Institution name, e.g. 'Vanderbilt'"
      },
      "limit": {
       "type": "integer",
       "description": "Max matches to return, default 3"
      },
      "state": {
       "type": "string",
       "description": "2-letter state code to narrow a common name"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "query": {
       "type": "object",
       "properties": {
        "name": {
         "type": "string"
        },
        "state": {
         "type": "null"
        }
       }
      },
      "source": {
       "type": "string"
      },
      "reasons": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "schools": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "city": {
          "type": "string"
         },
         "name": {
          "type": "string"
         },
         "state": {
          "type": "string"
         },
         "control": {
          "type": "string"
         },
         "website": {
          "type": "string"
         },
         "scorecardId": {
          "type": "integer"
         },
         "avgNetPriceUsd": {
          "type": "integer"
         },
         "admissionRatePct": {
          "type": "number"
         },
         "pellGrantRatePct": {
          "type": "number"
         },
         "completionRatePct": {
          "type": "number"
         },
         "tuitionInStateUsd": {
          "type": "integer"
         },
         "undergradEnrollment": {
          "type": "integer"
         },
         "tuitionOutOfStateUsd": {
          "type": "integer"
         },
         "medianEarnings10yrUsd": {
          "type": "integer"
         },
         "medianDebtCompletersUsd": {
 
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clearcheck-college-lookup-132b8d38/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from loonie-toll.onrender.com](https://www.zero.xyz/host/loonie-toll.onrender.com/llms.txt)
