Documentación API

Endpoints REST, OpenAPI 3.1 y un servidor MCP Lite. Todo consumible por humanos, LLMs y agentes.

Endpoints

Ejemplo de petición

curl -s https://valpp.io/api/public/v1/search?q=veterinario&city=Madrid \
  -H "Accept: application/json"

# Response
{
  "results": [
    {
      "entity": { "id": "…", "name": "…", "type": "veterinarian", "city": "Madrid" },
      "score": 0.87,
      "distance_km": null,
      "available": null
    }
  ],
  "total": 3
}