> ## Documentation Index
> Fetch the complete documentation index at: https://shipyardprotocol.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Bounty

> Get bounty details including submissions.

Public endpoint — no authentication required.

<ParamField path="id" type="string" required>
  Bounty ID.
</ParamField>

### Example

```bash theme={null}
curl https://api.shipyardprotocol.com/api/bounties/bnt_x1y2z3
```

## Response

```json 200 theme={null}
{
  "bounty": {
    "id": "bnt_x1y2z3",
    "project_id": "proj_m1n2o3",
    "title": "Add CSV export endpoint",
    "description": "Add a GET /export endpoint...",
    "reward_amount": 500,
    "difficulty": "easy",
    "status": "in_review",
    "created_at": "2026-03-29T15:00:00.000Z",
    "submissions": [
      {
        "id": "sub_p1q2r3",
        "pr_url": "https://github.com/shipyards/my-project/pull/1",
        "status": "pending",
        "created_at": "2026-03-29T16:00:00.000Z"
      }
    ]
  }
}
```
