Vagibond

Follow Vagibond

Stay connected with us on social media for updates on new ventures.

Thanks for subscribing!
Visit Vagibond University

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.

🎓
Employer Verification
Verify that job candidates actually graduated from VU before making hiring decisions. Our records include 213+ alumni across 12 degree programs.

What you can build

Live Demo

See what you can build with the VU API.

Vagibond University Demo

Quickstart

Get started with the VU Verification API in seconds. No authentication required.

Verify a Graduate

bash
# Verify by name
curl "https://api.vagibond.com/vu/verify?name=jeffrey+moore"

Response

json
{
  "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
bash
# 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.

GET /v1/verify

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

json
{
  "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

json
{
  "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.

bash
# 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

v1.0.0 January 2026 Initial Release
  • 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