Get company jobs (hiring signal)
GET
/api/v1/company/{id}/jobsReturn open job listings for a company. Active hiring is a strong GTM buying signal — use it to time outreach.
Request - cURL
curl -s "https://latestrounds.com/api/v1/company/cmp_9/jobs" \
-H "Authorization: Bearer YOUR_API_KEY"Request - JavaScript (fetch)
const res = await fetch("https://latestrounds.com/api/v1/company/cmp_9/jobs", {
headers: { Authorization: "Bearer YOUR_API_KEY" }
});
const json = await res.json();Request - Python
import requests
resp = requests.get(
"https://latestrounds.com/api/v1/company/cmp_9/jobs",
headers={"Authorization": "Bearer YOUR_API_KEY"},
timeout=30,
)
print(resp.json())Path parameters
| Name | Type | Required | Description |
|---|---|---|---|
| id | string | yes | Company ID (cmp_…). |
Query parameters
No fields.
Headers
| Name | Value | Required |
|---|---|---|
| Authorization | Bearer YOUR_API_KEY | yes |
Response fields
| Field | Type | Description |
|---|---|---|
| data[] | array | Job listings. |
| data[].title | string | Job title. |
| data[].location_city | string | City. |
| data[].location_country | string | Country. |
| data[].posted_at | string | ISO date of posting. |
Error responses
| Status | Code | Description |
|---|---|---|
| 404 | not_found | Company ID not found. |
| 401 | unauthorized | Missing or invalid API key. |
Sample response
200 OK
{
"data": [
{ "title": "Senior Software Engineer", "location_city": "San Francisco", "location_country": "United States", "posted_at": "2026-05-10" }
]
}