# List Greenhouse offices

List the public office hierarchy and department counts for a Greenhouse board.

- Platform: [Greenhouse Jobs](https://docs.upscrape.com/docs/platforms/greenhouse)
- Capability ID: `greenhouse.offices.list`
- 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"
  },
  "capability": "greenhouse.offices.list"
}'
```

## Input

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `board` | `string` | Yes | Public Greenhouse board token. |

### Example input

```json
{
  "board": "airbnb"
}
```

## 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",
  "offices": [
    {
      "child_ids": [
        "64283",
        "63868",
        "23350"
      ],
      "department_count": 61,
      "id": "17515",
      "name": "AMER"
    },
    {
      "department_count": 61,
      "id": "7425",
      "location": "Amsterdam, Netherlands",
      "name": "Amsterdam, Netherlands",
      "parent_id": "64285"
    },
    {
      "child_ids": [
        "64277",
        "64270",
        "64272"
      ],
      "department_count": 61,
      "id": "17517",
      "name": "APAC"
    }
  ]
}
```
### 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 |
| `offices` | `array` | 3 items |
| `offices` | `array` | 3 items |

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