curl --request POST \
--url https://api.vollna.com/v1/auto-bidding/jobs/create \
--header 'Content-Type: application/json' \
--header 'X-API-TOKEN: <api-key>' \
--data '
{
"setup_id": 123,
"upwork_job_id": "<string>",
"project_id": 123,
"scheduled_at": "2023-11-07T05:31:56Z",
"scheduled_in": 15,
"cover_letter": "<string>",
"answers": [
{
"question": "<string>",
"answer": "<string>"
}
],
"bid_amount": 500002.5,
"boost_bid_amount": 123
}
'import requests
url = "https://api.vollna.com/v1/auto-bidding/jobs/create"
payload = {
"setup_id": 123,
"upwork_job_id": "<string>",
"project_id": 123,
"scheduled_at": "2023-11-07T05:31:56Z",
"scheduled_in": 15,
"cover_letter": "<string>",
"answers": [
{
"question": "<string>",
"answer": "<string>"
}
],
"bid_amount": 500002.5,
"boost_bid_amount": 123
}
headers = {
"X-API-TOKEN": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-TOKEN': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
setup_id: 123,
upwork_job_id: '<string>',
project_id: 123,
scheduled_at: '2023-11-07T05:31:56Z',
scheduled_in: 15,
cover_letter: '<string>',
answers: [{question: '<string>', answer: '<string>'}],
bid_amount: 500002.5,
boost_bid_amount: 123
})
};
fetch('https://api.vollna.com/v1/auto-bidding/jobs/create', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.vollna.com/v1/auto-bidding/jobs/create",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'setup_id' => 123,
'upwork_job_id' => '<string>',
'project_id' => 123,
'scheduled_at' => '2023-11-07T05:31:56Z',
'scheduled_in' => 15,
'cover_letter' => '<string>',
'answers' => [
[
'question' => '<string>',
'answer' => '<string>'
]
],
'bid_amount' => 500002.5,
'boost_bid_amount' => 123
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-TOKEN: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.vollna.com/v1/auto-bidding/jobs/create"
payload := strings.NewReader("{\n \"setup_id\": 123,\n \"upwork_job_id\": \"<string>\",\n \"project_id\": 123,\n \"scheduled_at\": \"2023-11-07T05:31:56Z\",\n \"scheduled_in\": 15,\n \"cover_letter\": \"<string>\",\n \"answers\": [\n {\n \"question\": \"<string>\",\n \"answer\": \"<string>\"\n }\n ],\n \"bid_amount\": 500002.5,\n \"boost_bid_amount\": 123\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-TOKEN", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.vollna.com/v1/auto-bidding/jobs/create")
.header("X-API-TOKEN", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"setup_id\": 123,\n \"upwork_job_id\": \"<string>\",\n \"project_id\": 123,\n \"scheduled_at\": \"2023-11-07T05:31:56Z\",\n \"scheduled_in\": 15,\n \"cover_letter\": \"<string>\",\n \"answers\": [\n {\n \"question\": \"<string>\",\n \"answer\": \"<string>\"\n }\n ],\n \"bid_amount\": 500002.5,\n \"boost_bid_amount\": 123\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.vollna.com/v1/auto-bidding/jobs/create")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-TOKEN"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"setup_id\": 123,\n \"upwork_job_id\": \"<string>\",\n \"project_id\": 123,\n \"scheduled_at\": \"2023-11-07T05:31:56Z\",\n \"scheduled_in\": 15,\n \"cover_letter\": \"<string>\",\n \"answers\": [\n {\n \"question\": \"<string>\",\n \"answer\": \"<string>\"\n }\n ],\n \"bid_amount\": 500002.5,\n \"boost_bid_amount\": 123\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"message": "<string>",
"job": {
"id": 123,
"upwork_job_id": "<string>",
"status": "<string>",
"scheduled_at": "<string>",
"setup_id": 123,
"setup_name": "<string>",
"project_id": 123,
"cover_letter_length": 123,
"answers_count": 123,
"bid_amount": "<string>"
}
}{
"error": "<string>"
}{
"error": "<string>"
}{
"success": true,
"error": "<string>",
"job_id": 123
}Create auto bidding job
Create a new auto bidding job for automated Upwork proposal submission
curl --request POST \
--url https://api.vollna.com/v1/auto-bidding/jobs/create \
--header 'Content-Type: application/json' \
--header 'X-API-TOKEN: <api-key>' \
--data '
{
"setup_id": 123,
"upwork_job_id": "<string>",
"project_id": 123,
"scheduled_at": "2023-11-07T05:31:56Z",
"scheduled_in": 15,
"cover_letter": "<string>",
"answers": [
{
"question": "<string>",
"answer": "<string>"
}
],
"bid_amount": 500002.5,
"boost_bid_amount": 123
}
'import requests
url = "https://api.vollna.com/v1/auto-bidding/jobs/create"
payload = {
"setup_id": 123,
"upwork_job_id": "<string>",
"project_id": 123,
"scheduled_at": "2023-11-07T05:31:56Z",
"scheduled_in": 15,
"cover_letter": "<string>",
"answers": [
{
"question": "<string>",
"answer": "<string>"
}
],
"bid_amount": 500002.5,
"boost_bid_amount": 123
}
headers = {
"X-API-TOKEN": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-API-TOKEN': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
setup_id: 123,
upwork_job_id: '<string>',
project_id: 123,
scheduled_at: '2023-11-07T05:31:56Z',
scheduled_in: 15,
cover_letter: '<string>',
answers: [{question: '<string>', answer: '<string>'}],
bid_amount: 500002.5,
boost_bid_amount: 123
})
};
fetch('https://api.vollna.com/v1/auto-bidding/jobs/create', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.vollna.com/v1/auto-bidding/jobs/create",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'setup_id' => 123,
'upwork_job_id' => '<string>',
'project_id' => 123,
'scheduled_at' => '2023-11-07T05:31:56Z',
'scheduled_in' => 15,
'cover_letter' => '<string>',
'answers' => [
[
'question' => '<string>',
'answer' => '<string>'
]
],
'bid_amount' => 500002.5,
'boost_bid_amount' => 123
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-TOKEN: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.vollna.com/v1/auto-bidding/jobs/create"
payload := strings.NewReader("{\n \"setup_id\": 123,\n \"upwork_job_id\": \"<string>\",\n \"project_id\": 123,\n \"scheduled_at\": \"2023-11-07T05:31:56Z\",\n \"scheduled_in\": 15,\n \"cover_letter\": \"<string>\",\n \"answers\": [\n {\n \"question\": \"<string>\",\n \"answer\": \"<string>\"\n }\n ],\n \"bid_amount\": 500002.5,\n \"boost_bid_amount\": 123\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-TOKEN", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.vollna.com/v1/auto-bidding/jobs/create")
.header("X-API-TOKEN", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"setup_id\": 123,\n \"upwork_job_id\": \"<string>\",\n \"project_id\": 123,\n \"scheduled_at\": \"2023-11-07T05:31:56Z\",\n \"scheduled_in\": 15,\n \"cover_letter\": \"<string>\",\n \"answers\": [\n {\n \"question\": \"<string>\",\n \"answer\": \"<string>\"\n }\n ],\n \"bid_amount\": 500002.5,\n \"boost_bid_amount\": 123\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.vollna.com/v1/auto-bidding/jobs/create")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-TOKEN"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"setup_id\": 123,\n \"upwork_job_id\": \"<string>\",\n \"project_id\": 123,\n \"scheduled_at\": \"2023-11-07T05:31:56Z\",\n \"scheduled_in\": 15,\n \"cover_letter\": \"<string>\",\n \"answers\": [\n {\n \"question\": \"<string>\",\n \"answer\": \"<string>\"\n }\n ],\n \"bid_amount\": 500002.5,\n \"boost_bid_amount\": 123\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"message": "<string>",
"job": {
"id": 123,
"upwork_job_id": "<string>",
"status": "<string>",
"scheduled_at": "<string>",
"setup_id": 123,
"setup_name": "<string>",
"project_id": 123,
"cover_letter_length": 123,
"answers_count": 123,
"bid_amount": "<string>"
}
}{
"error": "<string>"
}{
"error": "<string>"
}{
"success": true,
"error": "<string>",
"job_id": 123
}Authorizations
API token for authentication
Body
The ID of the auto bidding setup to use
The Upwork job ID (usually starts with ~)
Vollna project ID. If not provided, system will search by upwork_job_id
Datetime to schedule the job at. Must be in the future. Accepts ISO 8601 (e.g. 2026-04-29T11:28:03Z or 2026-04-29T11:28:03+00:00) and SQL-style (Y-m-d H:i:s). Honored exactly: bypasses fair-slot scheduling and the higher-priority blocking-job nudge. Correctness checks (location restrictions, daily/monthly/trial limits, duplicate detection) still apply and may mark the job as skipped. Takes precedence over scheduled_in.
Minutes from now to schedule the job (15-60 range). Alternative to scheduled_at
15 <= x <= 60Custom cover letter text. If not provided, uses setup's template
Array of question/answer pairs for job application questions
Show child attributes
Show child attributes
Bid amount for the job (hourly or fixed price)
5 <= x <= 1000000Number of connects to boost the bid with
Was this page helpful?