curl -X POST https://api.up2data.ai/v1/companies/jobs-count \
-H "X-API-Key: $UP2DATA_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://linkedin.com/company/anthropic"}'
import requests
resp = requests.post(
"https://api.up2data.ai/v1/companies/jobs-count",
headers={"X-API-Key": UP2DATA_API_KEY},
json={"url": "https://linkedin.com/company/anthropic"},
)
data = resp.json()["data"]
{
"data": {
"url": "https://linkedin.com/company/anthropic",
"open_jobs_count": 87,
"scraped_at": "2026-07-08T12:00:00Z"
},
"meta": {
"creditsUsed": 1,
"creditsRemaining": 98419,
"billed": true,
"reason": "success",
"requestId": "req_example",
"latencyMs": 2100
}
}
{
"error": {
"type": "unprocessable_target",
"message": "Target is private, deleted, or unreachable.",
"requestId": "req_example"
}
}
Companies
Count company job openings
Return the number of active job postings a company has on LinkedIn.
POST
/
v1
/
companies
/
jobs-count
curl -X POST https://api.up2data.ai/v1/companies/jobs-count \
-H "X-API-Key: $UP2DATA_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://linkedin.com/company/anthropic"}'
import requests
resp = requests.post(
"https://api.up2data.ai/v1/companies/jobs-count",
headers={"X-API-Key": UP2DATA_API_KEY},
json={"url": "https://linkedin.com/company/anthropic"},
)
data = resp.json()["data"]
{
"data": {
"url": "https://linkedin.com/company/anthropic",
"open_jobs_count": 87,
"scraped_at": "2026-07-08T12:00:00Z"
},
"meta": {
"creditsUsed": 1,
"creditsRemaining": 98419,
"billed": true,
"reason": "success",
"requestId": "req_example",
"latencyMs": 2100
}
}
{
"error": {
"type": "unprocessable_target",
"message": "Target is private, deleted, or unreachable.",
"requestId": "req_example"
}
}
Cost: 1 credit per successful lookup · pay only on success
Return the number of active job postings a company has on LinkedIn.
Rate limit: counts as 1 request against your rate limit.
string
Company page URL or slug. Provide one of
url, domain, or linkedin_id.string
Company website domain (e.g.
anthropic.com).string
Numeric LinkedIn company ID.
Response
object
url, open_jobs_count, scraped_at.curl -X POST https://api.up2data.ai/v1/companies/jobs-count \
-H "X-API-Key: $UP2DATA_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://linkedin.com/company/anthropic"}'
import requests
resp = requests.post(
"https://api.up2data.ai/v1/companies/jobs-count",
headers={"X-API-Key": UP2DATA_API_KEY},
json={"url": "https://linkedin.com/company/anthropic"},
)
data = resp.json()["data"]
{
"data": {
"url": "https://linkedin.com/company/anthropic",
"open_jobs_count": 87,
"scraped_at": "2026-07-08T12:00:00Z"
},
"meta": {
"creditsUsed": 1,
"creditsRemaining": 98419,
"billed": true,
"reason": "success",
"requestId": "req_example",
"latencyMs": 2100
}
}
{
"error": {
"type": "unprocessable_target",
"message": "Target is private, deleted, or unreachable.",
"requestId": "req_example"
}
}