Get proposal by application UID
curl --request GET \
--url https://api.vollna.com/v1/proposals/by-uid/{applicationUid} \
--header 'X-API-TOKEN: <api-key>'import requests
url = "https://api.vollna.com/v1/proposals/by-uid/{applicationUid}"
headers = {"X-API-TOKEN": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-TOKEN': '<api-key>'}};
fetch('https://api.vollna.com/v1/proposals/by-uid/{applicationUid}', 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/proposals/by-uid/{applicationUid}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"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"
"net/http"
"io"
)
func main() {
url := "https://api.vollna.com/v1/proposals/by-uid/{applicationUid}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-TOKEN", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.vollna.com/v1/proposals/by-uid/{applicationUid}")
.header("X-API-TOKEN", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.vollna.com/v1/proposals/by-uid/{applicationUid}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-TOKEN"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"applicationUid": "1234567890123456789",
"submittedAt": "2023-11-07T05:31:56Z",
"coverLetter": "<string>",
"answers": [
{
"question": "<string>",
"answer": "<string>"
}
],
"jobDetails": {
"title": "<string>",
"postedAt": "2023-11-07T05:31:56Z",
"url": "<string>"
},
"freelancer": {
"id": 1,
"fullName": "John Doe",
"imagePath": "<string>"
},
"businessManager": {
"id": 2,
"fullName": "Jane Doe"
},
"upworkProfile": {
"id": 1,
"label": "ACME, Inc.",
"type": "agency"
},
"upworkOrganization": {
"id": 1,
"label": "ACME, Inc.",
"type": "agency"
},
"connects": 16,
"boost": 8,
"terms": {
"fixedPrice": 1000,
"hourlyRate": 100,
"increasePercent": 10,
"increaseFrequency": 3
},
"isViewed": true,
"isInterviewed": true,
"isHired": true,
"isWithdrawn": true,
"isInvitation": true,
"isArchived": true,
"occupationUid": "<string>",
"occupationTitle": "<string>",
"submissionPosition": 3,
"boostOutbid": true,
"coverLetterVariant": 123,
"responseTimeMinutes": 123,
"attachments": [
{
"name": "<string>",
"sizeLabel": "1.2 MB",
"url": "<string>"
}
],
"biddingTemplate": {
"id": 123,
"name": "<string>"
},
"project": {
"title": "<string>",
"description": "<string>",
"skills": [
"<string>"
],
"url": "<string>",
"publishedAt": "2023-11-07T05:31:56Z",
"publishedTimestamp": 123,
"usOnly": true,
"ukOnly": true,
"durationLabel": "1 to 3 months",
"engagementLabel": "Less than 30 hrs/week",
"experienceLevel": "Intermediate",
"jobType": "Hourly",
"jobAttachmentsCount": 123,
"connectsPrice": 123,
"isFeatured": true,
"isUpworkEnterpriseClient": true,
"preferredQualifications": {
"minJobSuccessScore": 90,
"talentType": "Independent",
"risingTalent": "<string>",
"prefEnglishSkill": "<string>",
"locations": [
"<string>"
],
"languages": [
"<string>"
]
},
"clientQuestions": [
"<string>"
],
"categories": [
"<string>"
],
"site": "<string>",
"budget": {
"type": "Fixed price",
"amount": "$15 - $25"
},
"budgetRaw": {
"type": "hourly",
"fixedAmount": 123,
"hourlyMin": 123,
"hourlyMax": 123
},
"clientHireRate": 0.72,
"clientDetails": {
"paymentMethodVerified": true,
"country": "<string>",
"totalSpent": "103.5k",
"totalHires": 24,
"hireRate": 0.72,
"avgHourlyRatePaid": 32.5,
"rating": 4.9,
"reviews": 18,
"city": "<string>",
"countryTimezone": "America/Chicago (UTC-05:00)",
"countryTimezoneTime": "07:16",
"industry": "<string>",
"companySize": "<string>",
"phoneVerified": true,
"registeredAt": "2023-11-07T05:31:56Z",
"jobsPosted": 123,
"jobsActive": 123,
"jobsOpen": 123,
"totalHoursPaid": 123,
"rankLevel": 123,
"rankDowngradeReason": {
"lowReviews": 123,
"scoredReviews": 123,
"recentLowReviews": 123,
"cappedAt": 123
},
"workHistory": [
{}
]
},
"clientWorkHistory": [
{
"job_info": {
"uid": "<string>",
"title": "<string>",
"type": "<string>",
"url": "<string>"
},
"status": "<string>",
"start_date": "<string>",
"end_date": "<string>",
"total_hours": 123,
"total_charge": 123,
"contractor_name": "<string>",
"feedback": {
"score": 123,
"comment": "<string>"
},
"feedback_to_client": {
"score": 123,
"comment": "<string>"
},
"rate": {
"amount": 123
}
}
]
}
}
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}Proposals
Get proposal by application UID
Returns a single proposal by its Upwork application UID
GET
/
proposals
/
by-uid
/
{applicationUid}
Get proposal by application UID
curl --request GET \
--url https://api.vollna.com/v1/proposals/by-uid/{applicationUid} \
--header 'X-API-TOKEN: <api-key>'import requests
url = "https://api.vollna.com/v1/proposals/by-uid/{applicationUid}"
headers = {"X-API-TOKEN": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-TOKEN': '<api-key>'}};
fetch('https://api.vollna.com/v1/proposals/by-uid/{applicationUid}', 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/proposals/by-uid/{applicationUid}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"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"
"net/http"
"io"
)
func main() {
url := "https://api.vollna.com/v1/proposals/by-uid/{applicationUid}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-TOKEN", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.vollna.com/v1/proposals/by-uid/{applicationUid}")
.header("X-API-TOKEN", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.vollna.com/v1/proposals/by-uid/{applicationUid}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-TOKEN"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"applicationUid": "1234567890123456789",
"submittedAt": "2023-11-07T05:31:56Z",
"coverLetter": "<string>",
"answers": [
{
"question": "<string>",
"answer": "<string>"
}
],
"jobDetails": {
"title": "<string>",
"postedAt": "2023-11-07T05:31:56Z",
"url": "<string>"
},
"freelancer": {
"id": 1,
"fullName": "John Doe",
"imagePath": "<string>"
},
"businessManager": {
"id": 2,
"fullName": "Jane Doe"
},
"upworkProfile": {
"id": 1,
"label": "ACME, Inc.",
"type": "agency"
},
"upworkOrganization": {
"id": 1,
"label": "ACME, Inc.",
"type": "agency"
},
"connects": 16,
"boost": 8,
"terms": {
"fixedPrice": 1000,
"hourlyRate": 100,
"increasePercent": 10,
"increaseFrequency": 3
},
"isViewed": true,
"isInterviewed": true,
"isHired": true,
"isWithdrawn": true,
"isInvitation": true,
"isArchived": true,
"occupationUid": "<string>",
"occupationTitle": "<string>",
"submissionPosition": 3,
"boostOutbid": true,
"coverLetterVariant": 123,
"responseTimeMinutes": 123,
"attachments": [
{
"name": "<string>",
"sizeLabel": "1.2 MB",
"url": "<string>"
}
],
"biddingTemplate": {
"id": 123,
"name": "<string>"
},
"project": {
"title": "<string>",
"description": "<string>",
"skills": [
"<string>"
],
"url": "<string>",
"publishedAt": "2023-11-07T05:31:56Z",
"publishedTimestamp": 123,
"usOnly": true,
"ukOnly": true,
"durationLabel": "1 to 3 months",
"engagementLabel": "Less than 30 hrs/week",
"experienceLevel": "Intermediate",
"jobType": "Hourly",
"jobAttachmentsCount": 123,
"connectsPrice": 123,
"isFeatured": true,
"isUpworkEnterpriseClient": true,
"preferredQualifications": {
"minJobSuccessScore": 90,
"talentType": "Independent",
"risingTalent": "<string>",
"prefEnglishSkill": "<string>",
"locations": [
"<string>"
],
"languages": [
"<string>"
]
},
"clientQuestions": [
"<string>"
],
"categories": [
"<string>"
],
"site": "<string>",
"budget": {
"type": "Fixed price",
"amount": "$15 - $25"
},
"budgetRaw": {
"type": "hourly",
"fixedAmount": 123,
"hourlyMin": 123,
"hourlyMax": 123
},
"clientHireRate": 0.72,
"clientDetails": {
"paymentMethodVerified": true,
"country": "<string>",
"totalSpent": "103.5k",
"totalHires": 24,
"hireRate": 0.72,
"avgHourlyRatePaid": 32.5,
"rating": 4.9,
"reviews": 18,
"city": "<string>",
"countryTimezone": "America/Chicago (UTC-05:00)",
"countryTimezoneTime": "07:16",
"industry": "<string>",
"companySize": "<string>",
"phoneVerified": true,
"registeredAt": "2023-11-07T05:31:56Z",
"jobsPosted": 123,
"jobsActive": 123,
"jobsOpen": 123,
"totalHoursPaid": 123,
"rankLevel": 123,
"rankDowngradeReason": {
"lowReviews": 123,
"scoredReviews": 123,
"recentLowReviews": 123,
"cappedAt": 123
},
"workHistory": [
{}
]
},
"clientWorkHistory": [
{
"job_info": {
"uid": "<string>",
"title": "<string>",
"type": "<string>",
"url": "<string>"
},
"status": "<string>",
"start_date": "<string>",
"end_date": "<string>",
"total_hours": 123,
"total_charge": 123,
"contractor_name": "<string>",
"feedback": {
"score": 123,
"comment": "<string>"
},
"feedback_to_client": {
"score": 123,
"comment": "<string>"
},
"rate": {
"amount": 123
}
}
]
}
}
}{
"error": "<string>"
}{
"error": "<string>"
}{
"error": "<string>"
}Was this page helpful?