Indeed
Indeed Job Details API
Get one Indeed posting in full - description as text and as HTML, structured salary with min, max, period and where the figure came from, employment types, benefits, location and geocoded address, employer rating, posting and expiry dates, and the apply route - as JSON. Costs 2 credits per request.
POST/api/v1/indeed/job
Authorizations
AuthorizationstringheaderrequiredBearer authentication header of the form Bearer <token>, where <token> is your Scavio API key (e.g. Bearer sk_live_your_key).
Body
application/jsonjob_idstringrequired16-hex Indeed job key, or any indeed.com URL carrying jk= (/viewjob, /rc/clk, /pagead/clk). Search rows return it as job_key.
Example: b208a958e088bf72
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
results = client.indeed.job("b208a958e088bf72")
print(results)Response
"job_key": "b208a958e088bf72",
"title": "Customer Deployment Specialist",
"url": "https://www.indeed.com/viewjob?jk=b208a958e088bf72",
"description": "Our Deloitte Customer team empowers organizations to build deeper relationships with customers through innovative strategies, advanced analytics, Generative AI, transformative technologies, and creati…",
"company": "Deloitte",
"company_url": "https://www.indeed.com/cmp/Deloitte",
"company_slug": "Deloitte",
"company_reviews_url": "https://www.indeed.com/cmp/Deloitte/reviews",
"company_logo": "https://d2q79iu7y748jz.cloudfront.net/s/_squarelogo/256x256/b245a75ba4a28df29f8f1551ac296deb",
"company_header_image": "https://d2q79iu7y748jz.cloudfront.net/s/_headerimage/1960x400/e62bed3cf60856557ddd392fe05c7d27",
"company_rating": 3.9,
"company_review_count": 14307,
"location": "Austin, TX",
"street_address": null,
"latitude": null,
"longitude": null,
"city": "Austin",
"state": "TX",
"postal_code": null,
"country": "US",
"remote": false,
"salary_text": "$105,400 - $207,800 a year",
"salary_min": 105400,
"salary_max": 207800,
"salary_currency": "USD",
"salary_period": "yearly",
"salary_source": "EXTRACTION",
"benefits": [],
"highlighted_attributes": [],
"posted_at": "2026-07-25T01:34:39.003Z",
"valid_through": "2026-12-07T13:28:58.802Z",
"posted_relative": "15 days ago",
"posted_today": false,
"applicant_count": null,
"urgently_hiring": false,
"indeed_apply": false,
"expired": false,
"sponsored": false,
"source": "Deloitte",
"original_job_url": null,
"phone": "5555550100",
},
"response_time": 2135,
"credits_used": 2,
"credits_remaining": 4820
}