Quickstart
Create your first worker and task, and receive a task.matched webhook in under five minutes.
- Get a sandbox key. Sign up at the console — every new workspace comes with an
sk_test_...key. - Install the SDK.
pip install fivexer
- Run the snippet. Replace
sk_test_...with your key.from fivexer import Fivexer, CreateTask, UpsertWorker client = Fivexer( base_url="https://api.fivexer.com", api_key="sk_test_...", ) client.workers.upsert(UpsertWorker(id="agent_1", tags=["english", "billing"])) task = client.tasks.create(CreateTask(tags=["english", "billing"], priority=90)) print(task.id, task.status) # task_8fk2 queued - Verify a webhook. When the platform matches the task, it posts a signed
task.matchedevent to your endpoint. See the webhooks guide for verification code in every language.
Next: How matching works or try the API in the browser.
Was this page helpful?