Endpoint Playground
Test Crawlora's Rover sitter profile API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/rover/sitter/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | Rover sitter profile slug, the trailing path segment of a search result's profile_url field |
{
"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."
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
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.
{
"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."
}
]
}
}curl "https://api.crawlora.net/api/v1/rover/sitter/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"