Endpoint Playground
Test Crawlora's Rover trainer 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/trainer-search?location=<location>" \
-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. \ |
{
"code": 200,
"msg": "OK",
"data": {
"location": "Seattle, WA",
"trainers": [
{
"slug": "madison-h-over-6-years-of-pet-care-experience",
"profile_url": "https://www.rover.com/training/members/madison-h-over-6-years-of-pet-care-experience/",
"name": "Madison H.",
"profile_image": "https://www.rover.com/cf-image-cdn/remote/images/people/Q9pOj7Pg/ahyvzcsdeh/original?width=450&height=450&quality=70&fit=cover",
"headline": "Let's Make Training Fun!",
"experience_details": "I am passionate about making training an enjoyable experience for both pets and their guardians!",
"rating": 5,
"review_count": 97,
"repeat_client_count": 36,
"years_experience": 2,
"city": "Seattle",
"state": "WA",
"zip": "98103",
"starting_price": 100,
"price_unit": "per session",
"methodology": "positive-reinforcement",
"skills": [
"puppy-training",
"adult-dog-training",
"clicker-training"
],
"behaviors": [
"barking",
"jumping",
"leash-manners"
]
}
]
}
}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 dog trainer listings by location, returning normalized trainer summaries (name, profile image, headline, experience details, rating, review count, repeat-client count, years of experience, city/state/zip, starting price, training methodology, and skill/behavior tags). Public data sourced from Rover's own server-rendered training search pages.
{
"code": 200,
"msg": "OK",
"data": {
"location": "Seattle, WA",
"trainers": [
{
"slug": "madison-h-over-6-years-of-pet-care-experience",
"profile_url": "https://www.rover.com/training/members/madison-h-over-6-years-of-pet-care-experience/",
"name": "Madison H.",
"profile_image": "https://www.rover.com/cf-image-cdn/remote/images/people/Q9pOj7Pg/ahyvzcsdeh/original?width=450&height=450&quality=70&fit=cover",
"headline": "Let's Make Training Fun!",
"experience_details": "I am passionate about making training an enjoyable experience for both pets and their guardians!",
"rating": 5,
"review_count": 97,
"repeat_client_count": 36,
"years_experience": 2,
"city": "Seattle",
"state": "WA",
"zip": "98103",
"starting_price": 100,
"price_unit": "per session",
"methodology": "positive-reinforcement",
"skills": [
"puppy-training",
"adult-dog-training",
"clicker-training"
],
"behaviors": [
"barking",
"jumping",
"leash-manners"
]
}
]
}
}curl "https://api.crawlora.net/api/v1/rover/trainer-search?location=<location>" \
-H "x-api-key: $CRAWLORA_API_KEY"