# Explore Recent Content

Fetch bounded pages of recently published public Are.na blocks and channels.

- Platform: [Are.na](https://docs.upscrape.com/docs/platforms/arena)
- Capability ID: `arena.explore.get`
- Cost: 1 credit per request
- Maximum runtime: 15 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": {
    "limit": 3,
    "page": 100
  },
  "capability": "arena.explore.get"
}'
```

## Input

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `limit` | `integer` | No | Maximum results returned per content family |
| `page` | `integer` | No | Page number |

### Example input

```json
{
  "limit": 3,
  "page": 100
}
```

## 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
{
  "block_total_pages": 6,
  "blocks": [
    {
      "class": "Image",
      "created_at": "2026-08-19T23:08:55Z",
      "href": "/block/49666509",
      "id": 49666509,
      "source": {
        "title": "In Common With | Arundel Flush Mount Mod. 36, Artist Edition: A Long Walk To Never",
        "url": "https://www.incommonwith.com/products/[redacted:token]"
      },
      "source_url": "https://www.incommonwith.com/products/[redacted:token]",
      "state": "available",
      "title": "In Common With | Arundel Flush Mount Mod. 36, Artist Edition: A Long Walk To Never",
      "updated_at": "2026-08-19T23:08:59Z",
      "user": {
        "href": "/eammon-logan",
        "id": 608861,
        "name": "Eammon Logan",
        "slug": "eammon-logan"
      }
    }
  ],
  "channel_total_pages": 3334,
  "channels": [
    {
      "added_to_at": "2026-08-19T23:08:56.847Z",
      "counts": {
        "contents": 16
      },
      "created_at": "2026-08-19T22:54:01.570Z",
      "href": "/eammon-logan/interior-inspire",
      "id": 5595041,
      "owner": {
        "class": "User",
        "href": "/eammon-logan",
        "id": 608861,
        "name": "Eammon Logan",
        "slug": "eammon-logan"
      },
      "slug": "interior-inspire",
      "status": "closed",
      "title": "INTERIOR INSPIRE",
      "updated_at": "2026-08-19T23:08:56.873Z"
    }
  ],
  "page": 100,
  "per_type": 3,
  "total": 6
}
```
### Illustrative output fields

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

| Path | Observed type | Example |
| --- | --- | --- |
| `block_total_pages` | `integer` | 6 |
| `blocks` | `array` | 1 items |
| `blocks` | `array` | 1 items |
| `channel_total_pages` | `integer` | 3334 |
| `channels` | `array` | 1 items |
| `channels` | `array` | 1 items |
| `page` | `integer` | 100 |
| `per_type` | `integer` | 3 |
| `total` | `integer` | 6 |

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