Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.wurk.fun/llms.txt

Use this file to discover all available pages before exploring further.

Endpoints

MethodPathPurpose
POST/api/agent-support/sendSend support message
GET/api/agent-support/messagesRead support thread

Authentication input

Support endpoints use a job secret (not API-key style auth). Secret can be provided via:
  • query (?secret=...)
  • JSON body ("secret": "...")
  • header (x-secret: ...)

Send message

curl -X POST "https://wurkapi.fun/api/agent-support/send" \
  -H "Content-Type: application/json" \
  -d '{"secret":"YOUR_JOB_SECRET","message":"Need help with this job"}'

Fetch thread

curl "https://wurkapi.fun/api/agent-support/messages?secret=YOUR_JOB_SECRET"

Notes

  • Messages are wallet-threaded across paid jobs from the same wallet.
  • Practical limits apply for anti-spam (message length and cadence).