# Get a Greenhouse office

Get one public office with hierarchy and compact department references.

- Platform: [Greenhouse Jobs](https://docs.upscrape.com/docs/platforms/greenhouse)
- Capability ID: `greenhouse.offices.get`
- Cost: 1 credit per request
- Maximum runtime: 45 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": "airbnb",
    "office_id": "17515"
  },
  "capability": "greenhouse.offices.get"
}'
```

## Input

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `board` | `string` | Yes | Public Greenhouse board token. |
| `office_id` | `string` | Yes | Numeric public office id returned by offices.list. |

### Example input

```json
{
  "board": "airbnb",
  "office_id": "17515"
}
```

## 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
{
  "board": "airbnb",
  "office": {
    "child_ids": [
      "64283",
      "63868",
      "23350"
    ],
    "department_count": 61,
    "departments": [
      {
        "id": "60966",
        "job_count": 0,
        "name": "1. Technical"
      },
      {
        "id": "60666",
        "job_count": 0,
        "name": "2. Business"
      },
      {
        "id": "73248",
        "job_count": 0,
        "name": "3. Independent Team"
      }
    ],
    "id": "17515",
    "name": "AMER"
  }
}
```
### Illustrative output fields

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

| Path | Observed type | Example |
| --- | --- | --- |
| `board` | `string` | airbnb |
| `office` | `object` | 5 fields |
| `office.child_ids` | `array` | 3 items |
| `office.department_count` | `integer` | 61 |
| `office.departments` | `array` | 3 items |
| `office.id` | `string` | 17515 |
| `office.name` | `string` | AMER |

## 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)
