Endpoint Playground
Test Crawlora's Rover trainer 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/trainer/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | Rover trainer profile slug, the trailing path segment of a trainer search result's profile_url field |
{
"code": 200,
"msg": "OK",
"data": {
"slug": "madison-h-over-6-years-of-pet-care-experience",
"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!",
"availability_details": "Dog training is my full-time job, so I have availability every day of the week!",
"methodology": "positive-reinforcement",
"methodology_details": "I have a positive reinforcement based training philosophy.",
"rating": 5,
"review_count": 97,
"repeat_client_count": 36,
"years_of_training": 2,
"skills": [
"Puppy training",
"Adult dog training",
"Clicker training"
],
"behaviors": [
"Barking",
"Jumping",
"Leash manners"
],
"education": [
{
"text": "Certified Professional Dog Trainer (CPDT-KA)",
"organization": "Animal Behavior College"
}
]
}
}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 dog trainer profile: name, photo, headline, experience and availability details, training methodology, rating, review count, repeat-client count, years of training, skill/behavior tags, and education credentials. Public data sourced from Rover's own server-rendered training profile pages.
{
"code": 200,
"msg": "OK",
"data": {
"slug": "madison-h-over-6-years-of-pet-care-experience",
"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!",
"availability_details": "Dog training is my full-time job, so I have availability every day of the week!",
"methodology": "positive-reinforcement",
"methodology_details": "I have a positive reinforcement based training philosophy.",
"rating": 5,
"review_count": 97,
"repeat_client_count": 36,
"years_of_training": 2,
"skills": [
"Puppy training",
"Adult dog training",
"Clicker training"
],
"behaviors": [
"Barking",
"Jumping",
"Leash manners"
],
"education": [
{
"text": "Certified Professional Dog Trainer (CPDT-KA)",
"organization": "Animal Behavior College"
}
]
}
}curl "https://api.crawlora.net/api/v1/rover/trainer/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"