Upwork Scraping

Upwork Scraping Overview

Qoest ships dedicated Upwork routes for:

  • single job details
  • job search
  • freelancer profile lookup
  • freelancer search

#Quick Start Example

curl -X POST /v1/upwork/job \
  -H "Authorization: Bearer your-token" \
  -H "Content-Type: application/json" \
  -d '{
    "url": "https://www.upwork.com/nx/search/jobs/details/~021964708900582486255"
  }'

#Available Endpoints

  • POST /v1/upwork/job - Get single job details (1 credit)
  • POST /v1/upwork/search-jobs - Search job listings (4 credits)
  • POST /v1/upwork/freelancer-profile - Get freelancer profile (3 credits)
  • POST /v1/upwork/search-freelancers - Search freelancers (3 credits)
  • POST /v1/upwork - Convenience route (variable credits)

For new integrations, prefer the explicit job and freelancer endpoints.