# Get Ashby job

Retrieve one listed public job and calculate optional publication or content change signals.

- Platform: [Ashby Jobs](https://docs.upscrape.com/docs/platforms/ashby)
- Capability ID: `ashby.job.get`
- Cost: 1 credit per request
- Maximum runtime: 30 seconds
- Execute endpoint: `POST https://data.upscrape.com/execute`

## Request

Use the exact public capability ID in the shared execute envelope.

```bash
curl --request POST \
  --url https://data.upscrape.com/execute \
  --header "Authorization: Bearer YOUR_API_KEY" \
  --header "Content-Type: application/json" \
  --header "Prefer: wait=30" \
  --data '{
  "input": {
    "board_slug": "ashby",
    "job_id": "0f5dbf59-687b-4d88-88a7-73ee0a66b48d"
  },
  "capability": "ashby.job.get"
}'
```

## Input

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `board_slug` | `string` | No |  |
| `job_id` | `string` | No |  |
| `job_url` | `string` | No |  |
| `previous_content_hash` | `string` | No |  |
| `previous_date_posted` | `string` | No |  |

### Example input

```json
{
  "board_slug": "ashby",
  "job_id": "0f5dbf59-687b-4d88-88a7-73ee0a66b48d"
}
```

## Response

Successful output is returned in `results[0].data`. Raw platform output is intentionally open-ended and may evolve with the upstream source.

### Illustrative sample output

This redacted fixture is an example, not a fixed response schema.

```json
{
  "address": {
    "country": "United States"
  },
  "apply_url": "https://jobs.ashbyhq.com/ashby/0f5dbf59-687b-4d88-88a7-73ee0a66b48d/application",
  "board_slug": "ashby",
  "collected_at": "2026-08-24T18:44:44.731590199Z",
  "company": "Ashby",
  "compensation": {
    "components": [
      {
        "currency_code": "USD",
        "interval": "1 YEAR",
        "maximum": 323000,
        "minimum": 232000,
        "type": "Salary"
      },
      {
        "interval": "1 YEAR",
        "type": "EquityPercentage"
      }
    ],
    "salary_summary": "$232K - $323K",
    "summary": "$232K – $323K • Offers Equity • Multiple Ranges",
    "tiers": [
      {
        "components": [
          {
            "currency_code": "USD",
            "interval": "1 YEAR",
            "maximum": 295000,
            "minimum": 250000,
            "type": "Salary"
          },
          {
            "interval": "NONE",
            "type": "EquityPercentage"
          }
        ],
        "id": "857c641d-2937-4577-af25-181edf538fb3",
        "summary": "$250K – $295K • Offers Equity",
        "title": "L4 (Staff): SF & NYC"
      },
      {
        "components": [
          {
            "interval": "NONE",
            "type": "EquityPercentage"
          },
          {
            "currency_code": "USD",
            "interval": "1 YEAR",
            "maximum": 284000,
            "minimum": 239000,
            "type": "Salary"
          }
        ],
        "id": "322c3d8a-7dec-48c0-a7ab-cda3e95ac9b8",
        "summary": "$239K – $284K • Offers Equity",
        "title": "L4 (Staff): Seattle"
      },
      {
        "components": [
          {
            "currency_code": "USD",
            "interval": "1 YEAR",
            "maximum": 270000,
            "minimum": 232000,
            "type": "Salary"
          },
          {
            "interval": "NONE",
            "type": "EquityPercentage"
          }
        ],
        "id": "e5947296-d6b3-44df-b518-2346aae45a85",
        "summary": "$232K – $270K • Offers Equity",
        "title": "L4 (Staff): US - All Other Locations"
      }
    ]
  },
  "content_hash": "[redacted:token]",
  "department": "Engineering",
  "description": "[redacted:public-job-description]",
  "employment_type": "FullTime",
  "id": "0f5dbf59-687b-4d88-88a7-73ee0a66b48d",
  "is_listed": true,
  "is_remote": true,
  "job_url": "https://jobs.ashbyhq.com/ashby/0f5dbf59-687b-4d88-88a7-73ee0a66b48d",
  "location": "Remote - US",
  "published_at": "2026-05-29T23:17:23.630+00:00",
  "secondary_locations": [
    {
      "location": "Austin"
    },
    {
      "location": "Los Angeles"
    },
    {
      "location": "Portland"
    }
  ],
  "team": "Americas Engineering",
  "title": "Staff Platform Engineer - Americas",
  "workplace_type": "Remote"
}
```
### Illustrative output fields

Derived from the sample above for orientation only. These fields are not a fixed response schema.

| Path | Observed type | Example |
| --- | --- | --- |
| `address` | `object` | 1 fields |
| `address.country` | `string` | United States |
| `apply_url` | `string` | https://jobs.ashbyhq.com/ashby/0f5dbf59-687b-4d88-88a7-73ee0a66b48d/app… |
| `board_slug` | `string` | ashby |
| `collected_at` | `string` | 2026-08-24T18:44:44.731590199Z |
| `company` | `string` | Ashby |
| `compensation` | `object` | 4 fields |
| `compensation.components` | `array` | 2 items |
| `compensation.salary_summary` | `string` | $232K - $323K |
| `compensation.summary` | `string` | $232K – $323K • Offers Equity • Multiple Ranges |
| `compensation.tiers` | `array` | 3 items |
| `content_hash` | `string` | [redacted:token] |
| `department` | `string` | Engineering |
| `description` | `string` | [redacted:public-job-description] |
| `employment_type` | `string` | FullTime |
| `id` | `string` | 0f5dbf59-687b-4d88-88a7-73ee0a66b48d |
| `is_listed` | `boolean` | true |
| `is_remote` | `boolean` | true |
| `job_url` | `string` | https://jobs.ashbyhq.com/ashby/0f5dbf59-687b-4d88-88a7-73ee0a66b48d |
| `location` | `string` | Remote - US |
| `published_at` | `string` | 2026-05-29T23:17:23.630+00:00 |
| `secondary_locations` | `array` | 3 items |
| `secondary_locations` | `array` | 3 items |
| `team` | `string` | Americas Engineering |
| `title` | `string` | Staff Platform Engineer - Americas |
| `workplace_type` | `string` | Remote |

## Execution behavior

A `200` response completed inline. A `202` response was queued; poll `GET /jobs/{id}` until the job reaches `completed` or `failed`. Use an `Idempotency-Key` when retrying must not create a duplicate logical job.

## Related documentation

- [Authentication](https://docs.upscrape.com/docs/api/authentication)
- [Jobs and results](https://docs.upscrape.com/docs/api/jobs)
- [Errors and retries](https://docs.upscrape.com/docs/api/errors)
- [Idempotency](https://docs.upscrape.com/docs/api/idempotency)
