Apply to a job
curl --request POST \
--url https://api.skyvern.com/v1/recipes/jobs/apply \
--header 'Content-Type: application/json' \
--data '
{
"job_url": "<string>",
"custom_prompt": "<string>",
"resume_url": "<string>",
"other_information": "<unknown>",
"username": "<string>",
"password": "<string>",
"persist_credentials": true,
"2fa_identifier": "<string>"
}
'import requests
url = "https://api.skyvern.com/v1/recipes/jobs/apply"
payload = {
"job_url": "<string>",
"custom_prompt": "<string>",
"resume_url": "<string>",
"other_information": "<unknown>",
"username": "<string>",
"password": "<string>",
"persist_credentials": True,
"2fa_identifier": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
job_url: '<string>',
custom_prompt: '<string>',
resume_url: '<string>',
other_information: '<unknown>',
username: '<string>',
password: '<string>',
persist_credentials: true,
'2fa_identifier': '<string>'
})
};
fetch('https://api.skyvern.com/v1/recipes/jobs/apply', 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.skyvern.com/v1/recipes/jobs/apply",
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([
'job_url' => '<string>',
'custom_prompt' => '<string>',
'resume_url' => '<string>',
'other_information' => '<unknown>',
'username' => '<string>',
'password' => '<string>',
'persist_credentials' => true,
'2fa_identifier' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$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.skyvern.com/v1/recipes/jobs/apply"
payload := strings.NewReader("{\n \"job_url\": \"<string>\",\n \"custom_prompt\": \"<string>\",\n \"resume_url\": \"<string>\",\n \"other_information\": \"<unknown>\",\n \"username\": \"<string>\",\n \"password\": \"<string>\",\n \"persist_credentials\": true,\n \"2fa_identifier\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
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.skyvern.com/v1/recipes/jobs/apply")
.header("Content-Type", "application/json")
.body("{\n \"job_url\": \"<string>\",\n \"custom_prompt\": \"<string>\",\n \"resume_url\": \"<string>\",\n \"other_information\": \"<unknown>\",\n \"username\": \"<string>\",\n \"password\": \"<string>\",\n \"persist_credentials\": true,\n \"2fa_identifier\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.skyvern.com/v1/recipes/jobs/apply")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"job_url\": \"<string>\",\n \"custom_prompt\": \"<string>\",\n \"resume_url\": \"<string>\",\n \"other_information\": \"<unknown>\",\n \"username\": \"<string>\",\n \"password\": \"<string>\",\n \"persist_credentials\": true,\n \"2fa_identifier\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"workflow_run_id": "<string>"
}Runs
Apply to a job
Start a workflow run that applies to a job with a résumé and optional credentials.
POST
/
v1
/
recipes
/
jobs
/
apply
Apply to a job
curl --request POST \
--url https://api.skyvern.com/v1/recipes/jobs/apply \
--header 'Content-Type: application/json' \
--data '
{
"job_url": "<string>",
"custom_prompt": "<string>",
"resume_url": "<string>",
"other_information": "<unknown>",
"username": "<string>",
"password": "<string>",
"persist_credentials": true,
"2fa_identifier": "<string>"
}
'import requests
url = "https://api.skyvern.com/v1/recipes/jobs/apply"
payload = {
"job_url": "<string>",
"custom_prompt": "<string>",
"resume_url": "<string>",
"other_information": "<unknown>",
"username": "<string>",
"password": "<string>",
"persist_credentials": True,
"2fa_identifier": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
job_url: '<string>',
custom_prompt: '<string>',
resume_url: '<string>',
other_information: '<unknown>',
username: '<string>',
password: '<string>',
persist_credentials: true,
'2fa_identifier': '<string>'
})
};
fetch('https://api.skyvern.com/v1/recipes/jobs/apply', 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.skyvern.com/v1/recipes/jobs/apply",
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([
'job_url' => '<string>',
'custom_prompt' => '<string>',
'resume_url' => '<string>',
'other_information' => '<unknown>',
'username' => '<string>',
'password' => '<string>',
'persist_credentials' => true,
'2fa_identifier' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$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.skyvern.com/v1/recipes/jobs/apply"
payload := strings.NewReader("{\n \"job_url\": \"<string>\",\n \"custom_prompt\": \"<string>\",\n \"resume_url\": \"<string>\",\n \"other_information\": \"<unknown>\",\n \"username\": \"<string>\",\n \"password\": \"<string>\",\n \"persist_credentials\": true,\n \"2fa_identifier\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
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.skyvern.com/v1/recipes/jobs/apply")
.header("Content-Type", "application/json")
.body("{\n \"job_url\": \"<string>\",\n \"custom_prompt\": \"<string>\",\n \"resume_url\": \"<string>\",\n \"other_information\": \"<unknown>\",\n \"username\": \"<string>\",\n \"password\": \"<string>\",\n \"persist_credentials\": true,\n \"2fa_identifier\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.skyvern.com/v1/recipes/jobs/apply")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"job_url\": \"<string>\",\n \"custom_prompt\": \"<string>\",\n \"resume_url\": \"<string>\",\n \"other_information\": \"<unknown>\",\n \"username\": \"<string>\",\n \"password\": \"<string>\",\n \"persist_credentials\": true,\n \"2fa_identifier\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"workflow_run_id": "<string>"
}Body
application/jsonmultipart/form-data
Response
Successfully started job application
Pattern:
^wr_Was this page helpful?

