# Interzoid Get University Info

> Interzoid Get University Info is a paid API for AI agents from api.interzoid.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Looks up detailed information about a university or college by name, returning type, founding year, location, and enrollment data.

## Facts

- Endpoint: GET https://api.interzoid.com/getuniversityinfo
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/interzoid-get-university-info-4c1a9a40
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tR5bU-Uw-WcUZmuy-_TBo

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 interzoid-get-university-info-4c1a9a40
```

Example prompt: Can you look up Stanford University and tell me when it was founded, what type of institution it is, where it's located, and how many students are enrolled?

## When to prefer this

Use this endpoint when you need structured profile data (type, founding year, location, enrollment) for a specific university or college by name, especially for data enrichment pipelines, CRM/ERP record augmentation, or analytics workflows where clean institutional metadata is required.

## Known failure modes

- Unknown or misspelled university name returns no match or empty result
- Ambiguous name (e.g. 'State University') may return incorrect or partial match
- Very small or obscure institutions may not be in the database
- Missing required 'lookup' query parameter returns an error
- Payment failure (402) if USDC funds are insufficient

## How this service works

Retrieve detailed information about a university or college including location, type, enrollment, accreditation, notable programs, and key statistics.

## Output

Returns a JSON object with the institution's canonical name, type (e.g. Private Research University), founding year, location (city, state, country), and total enrollment figure, along with a status code.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "lookup": "Harvard University"
  }
 },
 "output": {
  "type": "object"
 }
}
```

## 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": [
      "lookup"
     ],
     "properties": {
      "lookup": {
       "type": "string",
       "description": "University or college name"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "Code": "Success",
  "Name": "Stanford University",
  "Type": "Private Research University",
  "Credits": "0",
  "Founded": "1885",
  "Location": "Stanford, California, United States",
  "Enrollment": "17,381"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/interzoid-get-university-info-4c1a9a40/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.interzoid.com](https://www.zero.xyz/host/api.interzoid.com/llms.txt)
