Skip to main content
GET
/
api
/
external
/
jobs
/
open
/
social
curl -X GET "https://wurkapi.fun/api/external/jobs/open/social?page=1" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Accept: application/json"
{
  "page": 1,
  "totalPages": 1,
  "pageSize": 25,
  "jobs": [
    {
      "short_id": "97dd4824",
      "job_type": "repost",
      "tweet_url": "https://x.com/dewianasar203/status/1985498871926309362",
      "winners": 100,
      "description": "",
      "status": "paid",
      "created_at": "2025-11-04 01:12:00.332087",
      "work_status": "open"
    },
    {
      "short_id": "85bc3921",
      "job_type": "comment",
      "tweet_url": "https://x.com/user/status/1985498871926309363",
      "winners": 50,
      "description": "Share your thoughts about Web3!",
      "status": "paid",
      "created_at": "2025-11-04 00:45:00.123456",
      "work_status": "open"
    }
  ]
}

Authentication

X-API-Key
string
required
Your WURK API key

Query Parameters

page
integer
default:"1"
Page number for pagination

Response

page
integer
Current page number
totalPages
integer
Total number of pages
pageSize
integer
Number of items per page (25)
jobs
array
Array of open social jobs with the following fields:
  • short_id: Job ID (use this for API calls)
  • job_type: Type of job (repost, comment, repost_comment)
  • tweet_url: URL of the tweet
  • winners: Number of max completions
  • description: Job description/instructions
  • status: Payment status (paid, unpaid)
  • created_at: Creation timestamp
  • work_status: Job status (open, closed)

Rate Limit

10 requests per minute (shared with custom jobs endpoint)
curl -X GET "https://wurkapi.fun/api/external/jobs/open/social?page=1" \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Accept: application/json"
{
  "page": 1,
  "totalPages": 1,
  "pageSize": 25,
  "jobs": [
    {
      "short_id": "97dd4824",
      "job_type": "repost",
      "tweet_url": "https://x.com/dewianasar203/status/1985498871926309362",
      "winners": 100,
      "description": "",
      "status": "paid",
      "created_at": "2025-11-04 01:12:00.332087",
      "work_status": "open"
    },
    {
      "short_id": "85bc3921",
      "job_type": "comment",
      "tweet_url": "https://x.com/user/status/1985498871926309363",
      "winners": 50,
      "description": "Share your thoughts about Web3!",
      "status": "paid",
      "created_at": "2025-11-04 00:45:00.123456",
      "work_status": "open"
    }
  ]
}