{
  "name": "Bye Bye Asbestos",
  "description": "Asbestos surveys, testing and licensed removal across the UK. Tools for asbestos advice, coverage, pricing and answers.",
  "contact": {
    "phone": "07833 053749",
    "phoneE164": "+447833053749",
    "hours": "Monday to Saturday"
  },
  "tools": [
    {
      "name": "get-asbestos-advice",
      "description": "What to do if you find or suspect asbestos in a property before a survey or removal.",
      "input": {
        "type": "object",
        "properties": {}
      },
      "endpoint": null
    },
    {
      "name": "do-i-have-asbestos",
      "description": "Whether a given material or location is likely to contain asbestos and should be tested.",
      "input": {
        "type": "object",
        "properties": {
          "material": {
            "type": "string"
          },
          "location": {
            "type": "string"
          }
        }
      },
      "endpoint": null
    },
    {
      "name": "get-price-estimate",
      "description": "Indicative price for an asbestos survey, test or removal.",
      "input": {
        "type": "object",
        "properties": {
          "job": {
            "type": "string"
          },
          "material": {
            "type": "string"
          }
        }
      },
      "endpoint": "https://byebyeasbestos.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://byebyeasbestos.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://byebyeasbestos.co.uk/api/areas.json?q={place}"
    },
    {
      "name": "list-services",
      "description": "List the asbestos survey, testing and removal services offered.",
      "input": {
        "type": "object",
        "properties": {}
      },
      "endpoint": "https://byebyeasbestos.co.uk/api/services.json"
    },
    {
      "name": "list-materials",
      "description": "List the asbestos-containing materials we identify, test and remove.",
      "input": {
        "type": "object",
        "properties": {}
      },
      "endpoint": "https://byebyeasbestos.co.uk/api/materials.json"
    },
    {
      "name": "search-answers",
      "description": "Search the asbestos knowledge base.",
      "input": {
        "type": "object",
        "properties": {
          "q": {
            "type": "string"
          }
        },
        "required": [
          "q"
        ]
      },
      "endpoint": "https://byebyeasbestos.co.uk/api/answers.json?q={q}"
    },
    {
      "name": "call-now",
      "description": "Get the phone number to call for a quote or booking.",
      "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://byebyeasbestos.co.uk/api/services.json",
    "prices": "https://byebyeasbestos.co.uk/api/prices.json",
    "materials": "https://byebyeasbestos.co.uk/api/materials.json",
    "areas": "https://byebyeasbestos.co.uk/api/areas.json?q=",
    "answers": "https://byebyeasbestos.co.uk/api/answers.json?q=",
    "full": "https://byebyeasbestos.co.uk/api/data.json"
  }
}