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/ai-chat – Demo AI chatbot with FAQ knowledge base
  • POST /api/placeholder – Legacy demo endpoint

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

Service Pricing

Maintenance Services

  • 90k Mile Service: $899.99 (6-8 hours)
  • 60k Mile Service: $599.99 (4-5 hours)
  • 30k Mile Service: $299.99 (2-3 hours)
  • Oil Change & Filter: $49.99 (30 min)

Repair Services

  • Brake Repair & Pad Replacement: From $199.99 (2-4 hours)
  • Engine Diagnostics & Check Engine Light: From $89.99 (1-2 hours)
  • Hybrid & EV System Service: From $149.99 (2-4 hours)
  • Timing Belt / Timing Chain Replacement: From $399.99 (4-6 hours)

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"
    },
    {
      "title": "30k Mile Service",
      "summary": "Complete 30,000-mile maintenance package.",
      "excerpt": "Comprehensive service including fluid checks, filter replacement, and safety inspection.",
      "tags": [
        "Maintenance",
        "Scheduled Service",
        "Mountain View"
      ],
      "price": "$299.99",
      "duration": "2-3 hours",
      "category": "maintenance"
    },
    {
      "title": "Engine Diagnostics",
      "summary": "Professional engine diagnostics and repair services.",
      "excerpt": "Expert diagnosis and repair of engine problems and check engine lights.",
      "tags": [
        "Engine",
        "Diagnostics",
        "Mountain View"
      ],
      "price": "From $89.99",
      "duration": "1-2 hours",
      "category": "repair"
    }
  ],
  "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."
    }
  ]
}
  
Demo AI hook