Pawgo for Developers

Build with real-time pet travel data. REST API, MCP server, and AI-native tools.

Why we share this data

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.

Public REST API

The Pawgo API exposes airline pet policies and country import requirements. Base URL: https://info.pawgo.fr/api/v1/

Available endpoints

MethodEndpointDescription
GET/api/v1/coverageData coverage stats
GET/api/v1/airlinesList all airlines
GET/api/v1/airlines/{code}Airline pet policy
GET/api/v1/countriesList all countries
GET/api/v1/countries/{code}Country import requirements
GET/api/v1/openapi.jsonOpenAPI spec

Example

curl https://info.pawgo.fr/api/v1/airlines/AF

Rate limits

Two tiers of access:

Free tier

  • 30 req/min
  • Summary data
  • No key required

Registered tier

  • 120 req/min
  • Full data
  • X-API-Key header

MCP Server (AI Tool Integration)

Connect Pawgo directly to Claude, ChatGPT, or any MCP-compatible AI assistant. The server exposes 5 native tools:

check_airline_policy
check_country_requirements
compare_airlines
search_countries
get_coverage

Claude Desktop config

{
  "mcpServers": {
    "pawgo": {
      "command": "python3",
      "args": ["path/to/mcp_server.py"],
      "env": {
        "DATABASE_URL": "your-database-url"
      }
    }
  }
}

Remote SSE (coming soon)

https://info.pawgo.fr:8001/sse

Try it with Claude

Once configured, just ask Claude: "What's Air France's pet policy?"

Open Claude.ai

Get an API Key

Need 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"

Request a key

Reach out via pawgo.fr — we respond within 48h.

Contact Pawgo

Attribution

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.

OpenAPI spec