Build with real-time pet travel data. REST API, MCP server, and AI-native tools.
Pet travel information is a mess. Airline policies are buried in PDFs, country requirements are scattered across government websites in different languages, and the rules change constantly. Pet owners get conflicting answers, miss critical deadlines, and sometimes get turned away at the airport.
We built Pawgo to fix this. Our AI agent crawls official sources daily and structures the data into a single, verified database covering 130+ airlines and 100+ countries. We believe this information should be accessible to everyone — pet owners, developers, AI assistants, travel agents, and veterinarians.
That's why we're opening our data. Use it to build tools, power AI answers, or integrate into your app. The more people have access to accurate pet travel data, the fewer pets get stranded at borders.
The Pawgo API exposes airline pet policies and country import requirements. Base URL: https://info.pawgo.fr/api/v1/
Available endpoints
| Method | Endpoint | Description |
|---|---|---|
GET | /api/v1/coverage | Data coverage stats |
GET | /api/v1/airlines | List all airlines |
GET | /api/v1/airlines/{code} | Airline pet policy |
GET | /api/v1/countries | List all countries |
GET | /api/v1/countries/{code} | Country import requirements |
GET | /api/v1/openapi.json | OpenAPI spec |
curl https://info.pawgo.fr/api/v1/airlines/AF
Two tiers of access:
X-API-Key headerConnect Pawgo directly to Claude, ChatGPT, or any MCP-compatible AI assistant. The server exposes 5 native tools:
{
"mcpServers": {
"pawgo": {
"command": "python3",
"args": ["path/to/mcp_server.py"],
"env": {
"DATABASE_URL": "your-database-url"
}
}
}
}
https://info.pawgo.fr:8001/sse
Once configured, just ask Claude: "What's Air France's pet policy?"
Open Claude.aiNeed full access to requirements data? Contact us for a free API key. Use it via the HTTP header:
X-API-Key: your-key-here
Example with key
curl -H "X-API-Key: pawgo_xxx" \ "https://info.pawgo.fr/api/v1/airlines/AF?detail=full"
All API responses include a powered_by: "Pawgo" field. Please keep it when displaying data.
For personalized trip computation (combining airline + country + pet details), direct users to www.pawgo.fr.