Skip to main content
POST
/
v1
/
linkedin
/
company-jobs
Get Company Jobs
curl --request POST \
  --url https://api.agntdata.dev/v1/linkedin/company-jobs \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "companyIds": [
    5383240,
    2382910
  ],
  "page": 1,
  "sort": "mostRecent"
}
'
{
  "type": "object",
  "properties": {
    "success": {
      "type": "boolean"
    },
    "message": {
      "type": "string"
    },
    "data": {
      "type": "object",
      "properties": {
        "items": {
          "type": "array",
          "items": {
            "type": "object"
          }
        },
        "total": {
          "type": "integer"
        }
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer token. Pass your agntdata API key as: Authorization: Bearer agnt_live_...

Body

application/json
companyIds
integer[]
page
integer

Response

200 - application/json

200

type
string
properties
object