GET /v1/services
Service lines, services and prices
Every service line (grooming, walks, pet sitting), its services with prices by pet size and coat, the card fee, and the areas we cover.
Scope: No sign-in MCP tool: list_services
Example
curl -s "https://api.nogpets.com/v1/services"
Response · 200
{
"currency": "ZAR",
"serviceFeeCents": 1000,
"acceptsCash": true,
"areas": [
"Stellenbosch Central",
"Die Boord",
"Paradyskloof"
],
"lines": [
{
"id": "grooming",
"label": "Grooming",
"blurb": "Our van at your door. Bath, cut and nails.",
"durationMode": "SUM",
"repeats": false,
"services": [
{
"id": "full-groom",
"name": "Full groom",
"kind": "PRIMARY",
"blurb": "Bath, cut, blow-dry, nails and ears.",
"petTypes": [
"DOG"
],
"priceCents": 38000,
"durationMin": 60,
"fromCents": 38000,
"toCents": 68000,
"groupSize": 1,
"tiers": [
{
"coat": "LONG",
"maxKg": 10,
"priceCents": 46000,
"durationMin": 75
},
{
"maxKg": 10,
"priceCents": 38000,
"durationMin": 60
}
]
}
]
}
]
}