# Discover Ashby company board

Resolve a public Ashby board slug to organization metadata, teams, and listed job count.

- Platform: [Ashby Jobs](https://docs.upscrape.com/docs/platforms/ashby)
- Capability ID: `ashby.company-board-discovery`
- 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"
  },
  "capability": "ashby.company-board-discovery"
}'
```

## Input

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `board_slug` | `string` | Yes | The final path segment from jobs.ashbyhq.com/<board_slug>. |

### Example input

```json
{
  "board_slug": "ashby"
}
```

## 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_slug": "ashby",
  "company": "Ashby",
  "custom_jobs_page_url": "https://www.ashbyhq.com/careers",
  "job_count": 59,
  "jobs_page_slug": "Ashby",
  "organization_id": "4ea5f68e-c33e-4ac9-831a-e732bee4a303",
  "public_website": "https://www.ashbyhq.com",
  "teams": [
    {
      "id": "d22def71-84b4-4837-b73f-854a46fdb3fc",
      "name": "Americas Engineering"
    },
    {
      "id": "10afb3d0-fa1c-472f-87ef-9bf66de9dcc3",
      "name": "Contract Management"
    },
    {
      "id": "a23149a4-6817-4900-942c-6545eab16818",
      "name": "Customer Success"
    }
  ]
}
```
### Illustrative output fields

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

| Path | Observed type | Example |
| --- | --- | --- |
| `board_slug` | `string` | ashby |
| `company` | `string` | Ashby |
| `custom_jobs_page_url` | `string` | https://www.ashbyhq.com/careers |
| `job_count` | `integer` | 59 |
| `jobs_page_slug` | `string` | Ashby |
| `organization_id` | `string` | 4ea5f68e-c33e-4ac9-831a-e732bee4a303 |
| `public_website` | `string` | https://www.ashbyhq.com |
| `teams` | `array` | 3 items |
| `teams` | `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)
