Hire freelancers to get work done
API to hire freelancers across various professions on demand, allowing software to task humans.
import requests
url = "https://api.freelancer.com/v1/projects"
headers = {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
}
# Example: List projects
response = requests.get(url, headers=headers)
print(response.json())
# Example: Create a new project (requires more specific body/endpoint)
# data = {"title": "New Project", "description": "Task details...", "budget": {"minimum": 10, "maximum": 100}}
# response = requests.post(url, headers=headers, json=data)
# print(response.json())Last 50 checks (10 min intervals)