# Get Venue

Retrieve ParkWhiz venue details, location, type, and parking context.

- Platform: [ParkWhiz](https://docs.upscrape.com/docs/platforms/parkwhiz)
- Capability ID: `parkwhiz.venue.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": {
    "venue_id": 59
  },
  "capability": "parkwhiz.venue.get"
}'
```

## Input

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `venue_id` | `integer` | Yes | Venue identifier. |

### Example input

```json
{
  "venue_id": 59
}
```

## 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
{
  "scraped_at": "2026-08-30T12:44:24Z",
  "venue": {
    "address1": "500 S. Capitol Ave.",
    "city": "Indianapolis",
    "coordinates": [
      39.760139861560184,
      -86.16390466690063
    ],
    "country": "US",
    "description": "There is no better place for football in Indianapolis than Lucas Oil Stadium, home of the legendary Indianapolis Colts. This championship-winning team has many thousands of loyal fans, so it is important to book Lucas Oil Stadium parking ahead of time with ParkWhiz. The current team traces their history back to the Baltimore Colts, which had predecessors in previous decades, but formed as an NFL e…",
    "enhanced_airport": false,
    "name": "Lucas Oil Stadium",
    "postal_code": "46225",
    "primarily_transient": false,
    "state": "IN",
    "timezone": "America/New_York",
    "venue_id": 59,
    "venue_type": "Sports",
    "website": "https://www.lucasoilstadium.com/events-tickets/"
  }
}
```
### Illustrative output fields

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

| Path | Observed type | Example |
| --- | --- | --- |
| `scraped_at` | `string` | 2026-08-30T12:44:24Z |
| `venue` | `object` | 14 fields |
| `venue.address1` | `string` | 500 S. Capitol Ave. |
| `venue.city` | `string` | Indianapolis |
| `venue.coordinates` | `array` | 2 items |
| `venue.country` | `string` | US |
| `venue.description` | `string` | There is no better place for football in Indianapolis than Lucas Oil St… |
| `venue.enhanced_airport` | `boolean` | false |
| `venue.name` | `string` | Lucas Oil Stadium |
| `venue.postal_code` | `string` | 46225 |
| `venue.primarily_transient` | `boolean` | false |
| `venue.state` | `string` | IN |
| `venue.timezone` | `string` | America/New_York |
| `venue.venue_id` | `integer` | 59 |
| `venue.venue_type` | `string` | Sports |
| `venue.website` | `string` | https://www.lucasoilstadium.com/events-tickets/ |

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