Skip to main content
GET
/
api
/
data
/
jobs
/
{id}
Get single job opening
curl --request GET \
  --url https://api-next.dealroom.co/api/data/jobs/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": 8765432,
    "entity": {
      "uuid": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
      "name": "Example Startup"
    },
    "title": "Senior Backend Engineer",
    "url": "https://jobs.example.com/senior-backend-engineer",
    "source": "linkedin",
    "job_type": "engineering",
    "formatted_location": "Berlin, Germany",
    "post_language": "en",
    "latitude": 52.52,
    "longitude": 13.405,
    "date_posted": "2024-06-15T00:00:00.000Z",
    "city_unique_id": 118871,
    "state_unique_id": 8205,
    "country_unique_id": 2282,
    "continent_unique_id": 64,
    "city_region_unique_ids": [
      8205
    ]
  },
  "currency": "<string>"
}

Authorizations

Authorization
string
header
required

OAuth2 client-credentials flow against the Dealroom Auth0 tenant. Use the client_id / client_secret from a Programmatic API key. Tokens are valid for 24h — Swagger UI will reuse the same token across operations.

Path Parameters

id
string
required

Numeric Dealroom job opening ID.

Minimum string length: 1
Example:

"8765432"

Query Parameters

currency
string

ISO 4217 currency code for monetary field conversion. Defaults to USD.

Example:

"EUR"

Response

Single job opening

data
object
required
currency
string
required