Vagibond University API
Verify degrees and credentials from Vagibond University, the nation's leading institution for housing-flexible education. Our API enables employers and background check services to confirm graduate records.
What you can build
- Background check integrations - Verify educational credentials automatically
- HR systems - Add VU degree verification to your hiring workflow
- LinkedIn alternatives - Validate claimed VU degrees on profiles
- Job boards - Display verified VU credentials on applications
- Alumni directories - Build searchable graduate databases
Live Demo
See what you can build with the VU API.
Quickstart
Get started with the VU Verification API in seconds. No authentication required.
Verify a Graduate
# Verify by name
curl "https://api.vagibond.com/vu/verify?name=jeffrey+moore"
Response
{
"verified": true,
"count": 1,
"message": "Graduate verified in Vagibond University records.",
"alumni": [
{
"id": "6e89d5dc17418773",
"name": "Jeffrey Moore",
"degree": "M.S. Urban Survival",
"graduationYear": 2021,
"location": "Oakland, CA",
"photo": "https://cdn.vagibond.com/main/assets/hobos/face/6e89d5dc17418773_thumb.jpg",
"verificationUrl": "https://vu.vagibond.com/alumni/?id=6e89d5dc17418773"
}
]
}
Authentication
The VU API is open for public access to encourage widespread verification:
| Access Level | Rate Limit | Features |
|---|---|---|
| Public | 100 requests/hour | Search and verify alumni |
| Authenticated | 10,000 requests/hour | Bulk verification, webhook notifications |
# Authenticated request for higher rate limits
curl -H "Authorization: Bearer vu_your_api_key" \
"https://api.vagibond.com/vu/verify?name=jeffrey"
Verify Graduate
Search for and verify VU graduates using various criteria.
Query Parameters
| Parameter | Type | Description |
|---|---|---|
name |
string | Full name search (e.g., "jeffrey moore") |
first_name |
string | First name only |
last_name |
string | Last name only |
degree |
string | Filter by degree program |
year |
integer | Graduation year (2019-2025) |
id |
string | Alumni ID for exact match |
Verified Response
{
"verified": true,
"count": 1,
"message": "Graduate verified in Vagibond University records.",
"alumni": [
{
"id": "abc123...",
"name": "John Smith",
"degree": "B.S. Vagrancy Studies",
"graduationYear": 2023,
"location": "Los Angeles, CA",
"photo": "https://cdn.vagibond.com/...",
"verificationUrl": "https://vu.vagibond.com/alumni/?id=abc123..."
}
]
}
Not Found Response
{
"verified": false,
"message": "No matching alumni found in Vagibond University records.",
"suggestion": "Check spelling or try different search parameters."
}
Search Alumni
Combine multiple parameters to narrow down results.
# Search by degree and year curl "https://api.vagibond.com/vu/verify?degree=urban+survival&year=2021" # Search by last name and location curl "https://api.vagibond.com/vu/verify?last_name=smith" # Exact lookup by ID curl "https://api.vagibond.com/vu/verify?id=6e89d5dc17418773"
Degree Programs
Vagibond University offers 12 accredited* degree programs:
| Degree | Type | Duration |
|---|---|---|
| B.S. Vagrancy Studies | Bachelor's | 4 years |
| B.A. Nomadic Philosophy | Bachelor's | 4 years |
| M.S. Urban Survival | Master's | 2 years |
| B.S. Dumpster Economics | Bachelor's | 4 years |
| Certificate in Cardboard Architecture | Certificate | 6 months |
| B.A. Conversational Grunt | Bachelor's | 4 years |
| M.B.A. Panhandling Administration | Master's | 2 years |
| B.S. Recycling Sciences | Bachelor's | 4 years |
| Certificate in Bridge Engineering | Certificate | 6 months |
| B.A. Intersection Marketing | Bachelor's | 4 years |
| M.A. Transient Psychology | Master's | 2 years |
| B.S. Shopping Cart Logistics | Bachelor's | 4 years |
*Accredited by the National Board of Nomadic Education, a non-recognized accrediting body.
Error Codes
| Code | Description |
|---|---|
400 |
Missing required search parameters |
401 |
Invalid API key (for authenticated endpoints) |
429 |
Rate limit exceeded |
500 |
Internal server error |
Changelog
- Graduate verification endpoint
- Search by name, degree, year, and ID
- 213 alumni records from 2019-2025
- 12 degree programs supported
- Public access with optional authentication