{
 "openapi": "3.0.3",
 "info": {
  "title": "Tosca Gruber read API",
  "version": "1.0.0",
  "description": "Static JSON describing the agent, her areas, featured sold homes, reviews and FAQ. Read-only; contact is by phone or email."
 },
 "servers": [
  {
   "url": "https://toscagruber.com"
  }
 ],
 "paths": {
  "/api/agent.json": {
   "get": {
    "summary": "Agent facts: license, designations, phones, office, areas, sold homes, ratings, socials",
    "responses": {
     "200": {
      "description": "OK"
     }
    }
   }
  },
  "/api/areas.json": {
   "get": {
    "summary": "Neighborhoods served with summaries and page URLs",
    "responses": {
     "200": {
      "description": "OK"
     }
    }
   }
  },
  "/api/reviews.json": {
   "get": {
    "summary": "Verified ratings (Google, Yelp) and attributed review quotes",
    "responses": {
     "200": {
      "description": "OK"
     }
    }
   }
  },
  "/api/faq.json": {
   "get": {
    "summary": "Question and answer pairs",
    "responses": {
     "200": {
      "description": "OK"
     }
    }
   }
  },
  "/llms.txt": {
   "get": {
    "summary": "Agent summary",
    "responses": {
     "200": {
      "description": "OK"
     }
    }
   }
  }
 }
}