Matchup Labs builds agentic workflows and API-first products for the businesses, institutions, and communities the automation economy tends to overlook. We design systems that think, act, and coordinate on your behalf—turning research, operations, and outreach into software that runs itself.
NYC TLC FHV Intelligence API
Real-time license verification + renewal webhooks for the 80,000+ vehicle NYC for-hire fleet.
What it does
- Verify any TLC FHV license, DMV plate, or VIN in under 1 second. Returns active status, expiration date, base affiliation, wheelchair-accessible (WAV) flag.
- Subscribe to renewal-window webhooks. Get a daily push when vehicles approach license expiration — HMAC-signed payloads, filterable by base and WAV status.
- Monitor fleet portfolios with daily snapshots and diff detection. Know the instant a plate goes inactive.
Built for
Plate brokers and fleet operators
Portfolio-wide compliance monitoring for 1,000+ plate inventories.
Parking apps
Verify TLC plates at entry to auto-apply commercial livery rates.
In-cab ad networks
Filter inventory to active TLC vehicles before hardware install.
NEMT brokers
Pre-dispatch WAV + active verification for Medicaid trips.
Agent and AI builders
MCP server and TypeScript SDK for tool-callable TLC verification.
Pricing
1 credit = 1 verify call. 5 credits = 1 page of renewal results. Webhook subscriptions are free to create; 1 credit per delivered event.
Code example
curl
curl https://fhv.matchup.dev/api/v1/verify/C05015 \
-H "Authorization: Bearer mv_live_your_key_here"JavaScript
const res = await fetch("https://fhv.matchup.dev/api/v1/verify/C05015", {
headers: { Authorization: "Bearer mv_live_your_key_here" },
});
const { data, meta } = await res.json();
console.log(data.active, data.expiration_date, meta.credits_remaining);Spec and docs
Point any SDK generator at the spec URL. TypeScript SDK: npm install @matchuplabs/nyc-fhv-sdk
Get an API key
Free tier: 500 credits/month. No credit card required. Key issued instantly.
Get a free keyPart of the NYC API portfolio by Matchup Labs.
