Start with 5000 API credits for free
logo

Indeed listing API

Returns job listing information

Parameters

url - Indeed job listing URL

type: string

stream - Stream response

type: booleanDefault: false

Return type

listing

Examples

1
2
3
4
5
6
7
8
9
10
11
12
13
import typedclient
import asyncio

api = typedclient.connect('API_KEY')

async def main():
listing = await api.indeed.listing(
url="https://www.indeed.com/viewjob?jk=a4d97fa27223cc84"
)
print(listing.jobTitle)

asyncio.run(main())