Endpoint Playground
Test Crawlora's Rover sitter search 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/search?location=<location>&service_type=<service_type>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| location | string | Yes | Free-text address, city, or zip code, e.g. \ | |
| service_type | string | Yes | Service category to search. One of: `overnight-boarding`, `overnight-traveling`, `drop-in`, `doggy-day-care`, `dog-walking`. | |
| page | integer | No | 1-based result page. Defaults to 1. | |
| pet_type | string | No | Filter by pet species. One of: `dog`, `cat`. | |
| min_price | integer | No | Minimum starting rate in whole dollars. | |
| max_price | integer | No | Maximum starting rate in whole dollars. | |
| star_sitter_only | boolean | No | Restrict results to Rover's \ |
{
"code": 200,
"msg": "OK",
"data": {
"location": "Seattle, WA",
"service_type": "overnight-boarding",
"page": 1,
"per_page": 20,
"total_count": 2515,
"page_count": 126,
"sitters": [
{
"slug": "tianci-d-staycation-for-your-dog",
"profile_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=300&height=300&quality=70&fit=cover",
"rating": 5,
"review_count": 19,
"repeat_client_count": 2,
"years_experience": 20,
"neighborhood": "Downtown",
"city": "Seattle",
"state": "WA",
"zip": "98121",
"starting_price": 69,
"price_unit": "per night",
"description": "I've cared for four dogs who all enjoyed long, happy lives past 17.",
"is_star_sitter": true,
"service_type": "overnight-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.
Searches Rover's public sitter/walker listings by location and service type, returning normalized sitter summaries (name, profile image, rating, review count, repeat-client count, years of experience, neighborhood/city/state, starting price, Star Sitter status, and a short bio). Public data sourced from Rover's own server-rendered search pages.
{
"code": 200,
"msg": "OK",
"data": {
"location": "Seattle, WA",
"service_type": "overnight-boarding",
"page": 1,
"per_page": 20,
"total_count": 2515,
"page_count": 126,
"sitters": [
{
"slug": "tianci-d-staycation-for-your-dog",
"profile_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=300&height=300&quality=70&fit=cover",
"rating": 5,
"review_count": 19,
"repeat_client_count": 2,
"years_experience": 20,
"neighborhood": "Downtown",
"city": "Seattle",
"state": "WA",
"zip": "98121",
"starting_price": 69,
"price_unit": "per night",
"description": "I've cared for four dogs who all enjoyed long, happy lives past 17.",
"is_star_sitter": true,
"service_type": "overnight-boarding"
}
]
}
}curl "https://api.crawlora.net/api/v1/rover/search?location=<location>&service_type=<service_type>" \
-H "x-api-key: $CRAWLORA_API_KEY"