Skip to main content

For AI & LLMs

This page provides structured summaries and API documentation for LLMs and AI agents.

Business Profile

{
  "name": "Skyline Auto Repair",
  "address": "500 Castro St, Mountain View, CA 94041",
  "phone": "(424) 475-9376",
  "email": "info@skylineautorepair.app",
  "hours": "Mon–Fri 8 AM – 5 PM",
  "areaServed": [
    "Mountain View",
    "Palo Alto",
    "Los Altos",
    "Sunnyvale"
  ],
  "ratingValue": 4.8,
  "reviewCount": 1050
}
        

API Endpoints

  • GET /api/summary – Returns all MDX front-matter as JSON
  • POST /api/placeholder – Demo chatbot hook, echoes answer string

Sample Query

Content Summary

Services Offered

  • Maintenance Services: 4 services
  • Repair Services: 4 services
  • Vehicle Makes: 16 makes supported
  • Service Areas: 11 locations

Customer Reviews

  • Total Reviews: 11
  • Average Rating: 4.8/5
  • Featured Reviews: 11

Sample Response Structure

{
  "services": [
    {
      "title": "Oil Change & Filter",
      "summary": "Full-synthetic oil change with premium filter replacement.",
      "excerpt": "Keep your engine running smoothly with our comprehensive oil change service.",
      "tags": ["Maintenance", "Oil Change", "Mountain View"],
      "price": "$49.99",
      "duration": "30 min",
      "category": "maintenance"
    }
  ],
  "vehicles": [
    {
      "make": "Honda",
      "models": ["Civic", "Accord", "CR-V", "Pilot", "Odyssey", "HR-V", "Passport"],
      "image": "/images/vehicles/honda.jpg",
      "description": "Reliable Honda service and repair, from compact cars to family SUVs."
    }
  ],
  "reviews": [
    {
      "author": "Sarah M.",
      "rating": 5,
      "date": "2024-01-15",
      "text": "Excellent service! They diagnosed and fixed my check engine light quickly. Very professional and honest about pricing.",
      "vehicle": "2018 Toyota Camry",
      "featured": true
    }
  ],
  "locations": [
    {
      "name": "Palo Alto",
      "slug": "palo-alto",
      "address": "2450 El Camino Real, Palo Alto, CA 94306",
      "coordinates": {
        "lat": 37.4419,
        "lng": -122.143
      },
      "description": "Convenient Palo Alto location serving Stanford and the surrounding tech community."
    }
  ]
}