Beast Mode Lawn Care

Contact

Get in touch with Beast Mode Lawn Care

By submitting, you agree to be contacted about your request.

REST API

Beast Mode Lawn Care Reviews API

Read-only API exposing verified customer reviews and aspect-based sentiment insights for Beast Mode Lawn Care, Jacksonville, FL.

OpenAPI 3.1.0 · version 1.0.0 · machine spec at /.well-known/openapi.json


GET /reviews.json

Full reviews dataset

Returns business metadata, aggregate rating, and the full set of verified reviews.

Example request

curl "https://beastmodelawncarereviews.com/reviews.json"

Try it →


GET /insights.json

Sentiment insights dataset

Returns aspect-based sentiment analysis, entities (technicians, services, service areas), topics, FAQ, and an editorial summary.

Example request

curl "https://beastmodelawncarereviews.com/insights.json"

Try it →


GET /api/feed.json

JSON Feed of newest reviews

Returns the 50 newest reviews as a JSON Feed v1.1 document.

Example request

curl "https://beastmodelawncarereviews.com/api/feed.json"

Try it →


GET /api/reviews/search

Search reviews

Searches reviews by rating, date range, keyword, or mentioned technician/service. HTTP equivalent of the MCP search_reviews tool.

Parameters

NameInRequiredTypeDescription
ratingquerynointegerExact star rating to match.
min_ratingquerynonumberMinimum star rating (inclusive).
sincequerynostring (date)Only reviews on or after this date (YYYY-MM-DD).
untilquerynostring (date)Only reviews on or before this date (YYYY-MM-DD).
queryquerynostringSubstring search within review text.
mentions_technicianquerynostringOnly reviews mentioning the named technician.
mentions_servicequerynostringOnly reviews mentioning the given service id.
limitquerynointegerMaximum number of reviews to return (default 20, max 100).

Example request

curl "https://beastmodelawncarereviews.com/api/reviews/search?rating=5&min_rating=4&query=furnace"

Try it →


GET /api/reviews/since/{date}

Reviews since a date

Returns reviews with date on or after the given ISO date. Supports conditional GET (If-None-Match / If-Modified-Since).

Parameters

NameInRequiredTypeDescription
datepathyesstring (date)ISO date (YYYY-MM-DD). Returns reviews on or after this date.

Example request

curl "https://beastmodelawncarereviews.com/api/reviews/since/2025-01-01"

Try it →


POST /mcp

MCP streamable HTTP endpoint

Model Context Protocol server over streamable HTTP. Read-only tools over the review dataset.

Example request

curl -X POST "https://beastmodelawncarereviews.com/mcp" \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'

Try it →