Integrations
Zyfy in the tools you already use — spreadsheets, AI agents, API marketplaces, and client libraries. Every integration is authenticated with your own Zyfy API key, so usage is billed to your own account and quota.
Spreadsheets
Call Zyfy as a regular formula in Google Sheets — no code, no export/import round trip.
Zyfy for Sheets →
Postcode and vehicle enrichment as =ZYFY_POSTCODE(...) / =ZYFY_VEHICLE(...) formulas, plus a Bulk Enrich sidebar for filling a whole column at once. Available on the Google Workspace Marketplace.
MCP server
Add Zyfy to Claude Desktop, Claude Code, or Cursor and ask natural-language questions about UK postcodes and vehicles — no code required. Four tools: lookup_postcode, lookup_vehicle, nearest_postcode, postcodes_within. GitHub · npm
Requires Node 20+ and a free Zyfy API key. Add this to your Claude Desktop config (claude_desktop_config.json) or a project-local .mcp.json for Claude Code:
{
"mcpServers": {
"zyfy": {
"command": "npx",
"args": ["-y", "@zyfy-uk/mcp"],
"env": {
"ZYFY_API_KEY": "ea_live_your_key_here"
}
}
}
}API marketplaces
Discover and test Zyfy on the platforms below. Each still runs on your own Zyfy API key — the marketplace is a discovery and testing layer, not a separate billing account.
RapidAPI
Postcode and vehicle lookup endpoints, testable directly in the browser.
Postman
Full request collection — import and run against your own API key.
OpenAPI spec
A machine-readable spec of every endpoint, for GPT Actions, Postman/Insomnia import, codegen, or your own tooling. zyfy.uk/openapi/v1.json
Prefer a typed client library? See Client libraries for official TypeScript, Python, and .NET packages, plus raw HTTP examples.