Borza API providing various endpoints for tasks management
Borza API (1.0)
- Mock serverhttps://docs.borza.com/_mock/openapi/v1/workspaces
- Production serverhttps://api.borza.com/v1/workspaces
- Testing serverhttps://api-testing.borza.com/v1/workspaces
- Python
- Node.js
- Payload
- curl
- C#
- Java
- Go
import requests
url = "https://docs.borza.com/_mock/openapi/v1/workspaces"
headers = {"x-api-key": "YOUR_API_KEY_HERE"}
response = requests.get(url, headers=headers)
data = response.json()
print(data)[ { "id": "recXXXXXXXXXXXXXX", "createdTime": "2023-01-01T00:00:00.000Z", "title": "Workspace 1", "website": "https://example.com", "clients": [] } ]
- Mock serverhttps://docs.borza.com/_mock/openapi/v1/workspaces/{id}
- Production serverhttps://api.borza.com/v1/workspaces/{id}
- Testing serverhttps://api-testing.borza.com/v1/workspaces/{id}
- Python
- Node.js
- Payload
- curl
- C#
- Java
- Go
import requests
id = "YOUR_id_PARAMETER"
url = "https://docs.borza.com/_mock/openapi/v1/workspaces/" + id
headers = {"x-api-key": "YOUR_API_KEY_HERE"}
response = requests.get(url, headers=headers)
data = response.json()
print(data){ "id": "recXXXXXXXXXXXXXX", "createdTime": "2023-01-01T00:00:00.000Z", "title": "Workspace 1", "website": "https://example.com", "clients": [] }
- Mock serverhttps://docs.borza.com/_mock/openapi/v1/workspaces/{id}/tasks
- Production serverhttps://api.borza.com/v1/workspaces/{id}/tasks
- Testing serverhttps://api-testing.borza.com/v1/workspaces/{id}/tasks
- Python
- Node.js
- Payload
- curl
- C#
- Java
- Go
import requests
id = "YOUR_id_PARAMETER"
url = "https://docs.borza.com/_mock/openapi/v1/workspaces/" + id + "/tasks"
headers = {"x-api-key": "YOUR_API_KEY_HERE"}
response = requests.get(url, headers=headers)
data = response.json()
print(data)Successful Response
The record creation timestamp
The record creation timestamp
The reward for completing the task in dollars
The reward for completing the task in dollars
The client user associated with the task
The workspace associated with the task
The current publish status of the task
The current publish status of the task
This field will contain an array of specific options that describe accessibility considerations or work preferences of talents.
The location of the user performing the task. (Refer to the filters API)
The estimated number of talents required for the task
The estimated number of talents required for the task
The device requirements for the task
Additional peripherals or tools required for the task.
The categories of the task
The categories of the task
The workflow for completing the task (e.g., Manual review or Approve and pay).
The workflow for completing the task (e.g., Manual review or Approve and pay).
The estimated time to complete the task, in minutes.
The estimated time to complete the task, in minutes.
Indicates whether the task has an additional bonus applied.
Specifies the total bonus amount in currency format.
[ { "id": "recXXXXXXXXXXXXXX", "createdTime": "2023-01-01T00:00:00.000Z", "title": "Survey for A/B Video", "description": "Task", "budget": 20, "client": { … }, "workspace": { … }, "status": "Draft", "category": "string", "submission_ids": [], "talent_filters": [], "location": [], "language": [], "talent_count_requirement": 0, "device_requirements": [], "other_requirements": [], "task_category": "", "completion_path": "", "external_study_url": "", "task_estimation": 0, "apply_bonus": false, "total_bonus_amount": 0 } ]