/wttj/jobs
curl --request POST \
--url https://api.anysite.io/api/wttj/jobs \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"job": "<string>",
"timeout": 300,
"language": "en"
}
'import requests
url = "https://api.anysite.io/api/wttj/jobs"
payload = {
"job": "<string>",
"timeout": 300,
"language": "en"
}
headers = {
"access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({job: '<string>', timeout: 300, language: 'en'})
};
fetch('https://api.anysite.io/api/wttj/jobs', 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.anysite.io/api/wttj/jobs",
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' => '<string>',
'timeout' => 300,
'language' => 'en'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"access-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.anysite.io/api/wttj/jobs"
payload := strings.NewReader("{\n \"job\": \"<string>\",\n \"timeout\": 300,\n \"language\": \"en\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("access-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.anysite.io/api/wttj/jobs")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"job\": \"<string>\",\n \"timeout\": 300,\n \"language\": \"en\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/wttj/jobs")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"job\": \"<string>\",\n \"timeout\": 300,\n \"language\": \"en\"\n}"
response = http.request(request)
puts response.read_body[
{
"@type": "WttjJob",
"id": "<string>",
"name": "<string>",
"alias": "<string>",
"reference": "<string>",
"wttj_reference": "<string>",
"status": "<string>",
"language": "<string>",
"profile": "<string>",
"summary": "<string>",
"company_description": "<string>",
"contract_type": "<string>",
"remote": "<string>",
"salary_min": 123,
"salary_max": 123,
"salary_currency": "<string>",
"salary_period": "<string>",
"salary_yearly_min": 123,
"contract_duration_min": 123,
"contract_duration_max": 123,
"experience_level": "<string>",
"education_level": "<string>",
"start_date": "<string>",
"profession": {
"@type": "WttjProfession",
"category_name": "<string>",
"category_reference": "<string>",
"sub_category_name": "<string>",
"sub_category_reference": "<string>",
"pivot_name": "<string>",
"pivot_reference": "<string>"
},
"sectors": [],
"skills": [],
"tools": [],
"benefits": [],
"office": {
"@type": "WttjOffice",
"address": "<string>",
"city": "<string>",
"state": "<string>",
"district": "<string>",
"zip_code": "<string>",
"country": "<string>",
"country_code": "<string>",
"latitude": 123,
"longitude": 123,
"is_headquarter": true
},
"offices": [],
"videos": [],
"apply_url": "<string>",
"ats": "<string>",
"has_external_ats": true,
"url": "<string>",
"social_image": "<string>",
"organization": {
"@type": "WttjOrganization",
"name": "<string>",
"alias": "<string>",
"reference": "<string>",
"summary": "<string>",
"image": "<string>",
"cover": "<string>",
"industry": "<string>",
"sectors": [],
"employee_count": 123,
"creation_year": 123,
"job_count": 123,
"revenue": "<string>",
"average_age": 123,
"website_url": "<string>",
"equality_index": {
"@type": "WttjEqualityIndex",
"equality_index": 123,
"gender_pay_gap": 123,
"gap_in_promotions": 123,
"gap_in_annual_raises": 123,
"maternity_leave_return_raise": 123,
"equality_among_highest_earners": 123,
"workforce_range": "<string>",
"year": 123,
"published": true
},
"labels": [],
"headquarter": {
"@type": "WttjOffice",
"address": "<string>",
"city": "<string>",
"state": "<string>",
"district": "<string>",
"zip_code": "<string>",
"country": "<string>",
"country_code": "<string>",
"latitude": 123,
"longitude": 123,
"is_headquarter": true
},
"media_linkedin": "<string>",
"media_twitter": "<string>",
"media_facebook": "<string>",
"media_instagram": "<string>",
"media_youtube": "<string>"
},
"published_at": "<string>",
"updated_at": "<string>"
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}/wttj
/wttj/jobs
Get a single Welcome to the Jungle job posting by its URL or ’/’. Returns the title, full HTML description and candidate profile, contract type, remote policy, salary range, contract duration, experience and education levels, profession (category and sub-category), sectors, skills, tools, key missions, benefits, office locations with geo coordinates, the application URL, the embedded company profile and publication dates.
Price: 1 credit
⚠️ Common errors: 412: Job posting not found
POST
/
api
/
wttj
/
jobs
/wttj/jobs
curl --request POST \
--url https://api.anysite.io/api/wttj/jobs \
--header 'Content-Type: application/json' \
--header 'access-token: <api-key>' \
--data '
{
"job": "<string>",
"timeout": 300,
"language": "en"
}
'import requests
url = "https://api.anysite.io/api/wttj/jobs"
payload = {
"job": "<string>",
"timeout": 300,
"language": "en"
}
headers = {
"access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({job: '<string>', timeout: 300, language: 'en'})
};
fetch('https://api.anysite.io/api/wttj/jobs', 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.anysite.io/api/wttj/jobs",
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' => '<string>',
'timeout' => 300,
'language' => 'en'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"access-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.anysite.io/api/wttj/jobs"
payload := strings.NewReader("{\n \"job\": \"<string>\",\n \"timeout\": 300,\n \"language\": \"en\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("access-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.anysite.io/api/wttj/jobs")
.header("access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"job\": \"<string>\",\n \"timeout\": 300,\n \"language\": \"en\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.anysite.io/api/wttj/jobs")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"job\": \"<string>\",\n \"timeout\": 300,\n \"language\": \"en\"\n}"
response = http.request(request)
puts response.read_body[
{
"@type": "WttjJob",
"id": "<string>",
"name": "<string>",
"alias": "<string>",
"reference": "<string>",
"wttj_reference": "<string>",
"status": "<string>",
"language": "<string>",
"profile": "<string>",
"summary": "<string>",
"company_description": "<string>",
"contract_type": "<string>",
"remote": "<string>",
"salary_min": 123,
"salary_max": 123,
"salary_currency": "<string>",
"salary_period": "<string>",
"salary_yearly_min": 123,
"contract_duration_min": 123,
"contract_duration_max": 123,
"experience_level": "<string>",
"education_level": "<string>",
"start_date": "<string>",
"profession": {
"@type": "WttjProfession",
"category_name": "<string>",
"category_reference": "<string>",
"sub_category_name": "<string>",
"sub_category_reference": "<string>",
"pivot_name": "<string>",
"pivot_reference": "<string>"
},
"sectors": [],
"skills": [],
"tools": [],
"benefits": [],
"office": {
"@type": "WttjOffice",
"address": "<string>",
"city": "<string>",
"state": "<string>",
"district": "<string>",
"zip_code": "<string>",
"country": "<string>",
"country_code": "<string>",
"latitude": 123,
"longitude": 123,
"is_headquarter": true
},
"offices": [],
"videos": [],
"apply_url": "<string>",
"ats": "<string>",
"has_external_ats": true,
"url": "<string>",
"social_image": "<string>",
"organization": {
"@type": "WttjOrganization",
"name": "<string>",
"alias": "<string>",
"reference": "<string>",
"summary": "<string>",
"image": "<string>",
"cover": "<string>",
"industry": "<string>",
"sectors": [],
"employee_count": 123,
"creation_year": 123,
"job_count": 123,
"revenue": "<string>",
"average_age": 123,
"website_url": "<string>",
"equality_index": {
"@type": "WttjEqualityIndex",
"equality_index": 123,
"gender_pay_gap": 123,
"gap_in_promotions": 123,
"gap_in_annual_raises": 123,
"maternity_leave_return_raise": 123,
"equality_among_highest_earners": 123,
"workforce_range": "<string>",
"year": 123,
"published": true
},
"labels": [],
"headquarter": {
"@type": "WttjOffice",
"address": "<string>",
"city": "<string>",
"state": "<string>",
"district": "<string>",
"zip_code": "<string>",
"country": "<string>",
"country_code": "<string>",
"latitude": 123,
"longitude": 123,
"is_headquarter": true
},
"media_linkedin": "<string>",
"media_twitter": "<string>",
"media_facebook": "<string>",
"media_instagram": "<string>",
"media_youtube": "<string>"
},
"published_at": "<string>",
"updated_at": "<string>"
}
]{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Authorizations
API token from the dashboard
Headers
Body
application/json
Response
Successful Response
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
⌘I