{
  "name": "Wrong Fuel In The Car",
  "description": "Mobile wrong-fuel rescue across the UK. Tools for emergency advice, coverage, pricing and answers.",
  "contact": {
    "phone": "0800 170 0644",
    "phoneE164": "+448001700644",
    "hours": "24/7, 365 days a year"
  },
  "tools": [
    {
      "name": "get-emergency-advice",
      "description": "What to do immediately after putting the wrong fuel in a vehicle.",
      "input": {
        "type": "object",
        "properties": {}
      },
      "endpoint": null
    },
    {
      "name": "assess-damage-risk",
      "description": "Rough risk of damage given the fuel mistake and whether the engine was started.",
      "input": {
        "type": "object",
        "properties": {
          "fuelIn": {
            "type": "string"
          },
          "engineStarted": {
            "type": "boolean"
          }
        }
      },
      "endpoint": null
    },
    {
      "name": "get-price-estimate",
      "description": "Indicative call-out price for a wrong-fuel drain.",
      "input": {
        "type": "object",
        "properties": {
          "vehicleType": {
            "type": "string"
          },
          "engineStarted": {
            "type": "boolean"
          }
        }
      },
      "endpoint": "https://wrongfuelinthecar.co.uk/api/prices.json"
    },
    {
      "name": "find-near-me",
      "description": "Check whether we cover a place and get its page.",
      "input": {
        "type": "object",
        "properties": {
          "place": {
            "type": "string"
          }
        },
        "required": [
          "place"
        ]
      },
      "endpoint": "https://wrongfuelinthecar.co.uk/api/areas.json?q={place}"
    },
    {
      "name": "check-coverage",
      "description": "Alias of find-near-me: is a town/postcode covered?",
      "input": {
        "type": "object",
        "properties": {
          "place": {
            "type": "string"
          }
        },
        "required": [
          "place"
        ]
      },
      "endpoint": "https://wrongfuelinthecar.co.uk/api/areas.json?q={place}"
    },
    {
      "name": "list-services",
      "description": "List the wrong-fuel and fuel-drain services offered.",
      "input": {
        "type": "object",
        "properties": {}
      },
      "endpoint": "https://wrongfuelinthecar.co.uk/api/services.json"
    },
    {
      "name": "search-answers",
      "description": "Search the wrong-fuel knowledge base.",
      "input": {
        "type": "object",
        "properties": {
          "q": {
            "type": "string"
          }
        },
        "required": [
          "q"
        ]
      },
      "endpoint": "https://wrongfuelinthecar.co.uk/api/answers.json?q={q}"
    },
    {
      "name": "call-now",
      "description": "Get the phone number to call for immediate help.",
      "input": {
        "type": "object",
        "properties": {}
      },
      "endpoint": null
    },
    {
      "name": "get-page-facts",
      "description": "Key facts about the current page (service, location, price, phone).",
      "input": {
        "type": "object",
        "properties": {}
      },
      "endpoint": null
    }
  ],
  "data": {
    "services": "https://wrongfuelinthecar.co.uk/api/services.json",
    "prices": "https://wrongfuelinthecar.co.uk/api/prices.json",
    "vehicles": "https://wrongfuelinthecar.co.uk/api/vehicles.json",
    "areas": "https://wrongfuelinthecar.co.uk/api/areas.json?q=",
    "answers": "https://wrongfuelinthecar.co.uk/api/answers.json?q=",
    "full": "https://wrongfuelinthecar.co.uk/api/data.json"
  }
}