Rover API endpoint
Use Crawlora's Rover sitter profile API to extract supported public Rover data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/rover/sitter/{slug}Returns a normalized Rover sitter/walker profile: name, photo, bio, star rating, review count, repeat-client count, years of experience, neighborhood/city/state, starting price, Star Sitter status, the services offered with per-service pricing, and public review excerpts from the sitter's own profile page. Public data sourced from Rover's own server-rendered profile pages. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| slug (path) | string | Yes | Rover sitter profile slug, the trailing path segment of a search result's profile_url field | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/rover/sitter/%3Cslug%3E" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
Some targets require real browser execution because the data is loaded through JavaScript, dynamic rendering, or interaction-like browser behavior.
For supported endpoints, Crawlora can route requests through a managed browser cluster. This allows Crawlora to execute JavaScript, load dynamic content, apply browser-level request behavior, and normalize the rendered result into JSON.
You do not need to operate your own Playwright, Puppeteer, Chrome, proxy, queue, or retry infrastructure.
- Location is normalized to neighborhood/city/state, matching what Rover's own profile page shows — never an exact street address. - `reviews` reflects only the excerpts already public on the sitter's own profile page carousel. This endpoint does not aggregate a sitter's full review history and does not touch Rover's `/members/reviews/*` path, which robots.txt disallows. - `services` lists every service the sitter offers with its own starting rate, not just the service type used to find them in search. Example response: ```json { "code": 200, "msg": "OK", "data": { "slug": "tianci-d-staycation-for-your-dog", "url": "https://www.rover.com/members/tianci-d-staycation-for-your-dog/", "name": "Tianci D.", "profile_image": "https://www.rover.com/cf-image-cdn/remote/images/people/AP1xVWYN/hndsxqidyh/original?width=450&height=450&quality=70&fit=cover", "bio": "I've cared for four dogs who all enjoyed long, happy lives past 17, and I'd love to give your pup the same gentle, loving attention on every walk.", "rating": 5.0, "review_count": 19, "repeat_client_count": 2, "years_experience": 20, "neighborhood": "Downtown", "city": "Seattle", "state": "WA", "starting_price": 69, "price_unit": "per night", "is_star_sitter": true, "services": [ {"name": "Boarding", "price": 69, "unit": "per night"} ], "reviews": [ { "reviewer": "Dustin Z.", "rating": 5.0, "service_type": "Doggy Day Care", "date": "Aug 28, 2026", "text": "Tianci and Ran are incredible! We are devastated they no longer do doggy daycare but we would 100% recommend them for boarding." } ] } } ```
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 404 | Not Found | #/definitions/app.Response |
| 500 | Internal Server Error | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"code": 200,
"msg": "OK",
"data": {
"slug": "tianci-d-staycation-for-your-dog",
"url": "https://www.rover.com/members/tianci-d-staycation-for-your-dog/",
"name": "Tianci D.",
"profile_image": "https://www.rover.com/cf-image-cdn/remote/images/people/AP1xVWYN/hndsxqidyh/original?width=450&height=450&quality=70&fit=cover",
"bio": "I've cared for four dogs who all enjoyed long, happy lives past 17, and I'd love to give your pup the same gentle, loving attention on every walk.",
"rating": 5,
"review_count": 19,
"repeat_client_count": 2,
"years_experience": 20,
"neighborhood": "Downtown",
"city": "Seattle",
"state": "WA",
"starting_price": 69,
"price_unit": "per night",
"is_star_sitter": true,
"services": [
{
"name": "Boarding",
"price": 69,
"unit": "per night"
}
],
"reviews": [
{
"reviewer": "Dustin Z.",
"rating": 5,
"service_type": "Doggy Day Care",
"date": "Aug 28, 2026",
"text": "Tianci and Ran are incredible! We are devastated they no longer do doggy daycare but we would 100% recommend them for boarding."
}
]
}
}Request schema
No body schema
Response schema
#/definitions/rover.profileResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | rover.ProfileResponse | No | ||||
| data.bio | string | No | ||||
| data.city | string | No | ||||
| data.is_star_sitter | boolean | No | ||||
| data.name | string | No | ||||
| data.neighborhood | string | No | ||||
| data.price_unit | string | No | ||||
| data.profile_image | string | No | ||||
| data.rating | number | No | ||||
| data.repeat_client_count | integer | No | ||||
| data.review_count | integer | No | ||||
| data.reviews | array | No | ||||
| data.reviews[].date | string | No | ||||
| data.reviews[].rating | number | No | ||||
| data.reviews[].reviewer | string | No | ||||
| data.reviews[].service_type | string | No | ||||
| data.reviews[].text | string | No | ||||
| data.services | array | No | ||||
| data.services[].name | string | No | ||||
| data.services[].price | number | No | ||||
| data.services[].unit | string | No | ||||
| data.slug | string | No | ||||
| data.starting_price | number | No | ||||
| data.state | string | No | ||||
| data.url | string | No | ||||
| data.years_experience | integer | No | ||||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/rover/sitter/%3Cslug%3E" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms