Endpoint Playground
Test Crawlora's Upwork freelancer 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/upwork/freelancer/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Upwork freelancer id, the value after \ |
{
"code": 200,
"msg": "OK",
"data": {
"id": "0157e03059a690281f",
"url": "https://www.upwork.com/freelancers/~0157e03059a690281f",
"name": "Eugene K.",
"title": "Python Developer",
"verified": true,
"overview": "I have 8 years of experience in Python development...",
"hourly_rate": "$37.00/hr",
"rating": 4.9,
"review_count": 67,
"job_success_score": 100,
"location": "San Diego, CA, USA",
"local_time": "12:06 am local time",
"total_jobs": 82,
"total_hours": 394,
"feedback": [
{
"title": "Scraping for Tattoo Shops",
"comment": "I will hire Eugene again if we need him.",
"date": "October 17, 2025",
"rating": 5
}
]
}
}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 Upwork freelancer profile: name, title, verification badge, overview, hourly rate, rating and review count, Job Success Score, location and local time, total jobs/hours worked, and recent client feedback (title, comment, date, client name, rating). Public data sourced from Upwork's own server-rendered profile pages via a real browser-rendering backend.
{
"code": 200,
"msg": "OK",
"data": {
"id": "0157e03059a690281f",
"url": "https://www.upwork.com/freelancers/~0157e03059a690281f",
"name": "Eugene K.",
"title": "Python Developer",
"verified": true,
"overview": "I have 8 years of experience in Python development...",
"hourly_rate": "$37.00/hr",
"rating": 4.9,
"review_count": 67,
"job_success_score": 100,
"location": "San Diego, CA, USA",
"local_time": "12:06 am local time",
"total_jobs": 82,
"total_hours": 394,
"feedback": [
{
"title": "Scraping for Tattoo Shops",
"comment": "I will hire Eugene again if we need him.",
"date": "October 17, 2025",
"rating": 5
}
]
}
}curl "https://api.crawlora.net/api/v1/upwork/freelancer/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"