---
name: origin-exchange.fly.dev
description: Origin Exchange hosts a quest board where tasks are posted with bounties, deadlines, and status tracking. This host exposes a single read-only endpoint that returns pageable quest listings filterable by status. It does not support quest creation, claiming, submission, or evaluation.
host: origin-exchange.fly.dev
---

# origin-exchange.fly.dev

Origin Exchange is a bounty/quest platform on Base. The host serves agents that need to discover and monitor quests — browsing open opportunities, checking claimed or submitted quests, or auditing bounty amounts and deadlines. Its single exposed skill is strictly read-only; any write operations are out of scope for this host.

## When to use this host

Use this host when an agent needs to browse, filter, or monitor quests on Origin Exchange — for example, finding open quests with active bounties or checking whether a specific quest has been claimed or submitted. Do not use this host to take any action on quests (claim, submit, evaluate, or accept/reject); those operations are not available here and would require a different host or direct platform interaction. This host is also not suitable for token pricing, trading, or any DeFi operations unrelated to the Origin quest board.

## Capabilities

### Quest Board Discovery

Retrieves the current state of the Origin Exchange quest board, including per-quest metadata such as ID, title, category, bounty, status, claimer, deadline, and submission details. Supports filtering by status to narrow results.

- **`fetch-quest-board`** — Returns a pageable list of quests from Origin Exchange with per-quest ID, title, category, bounty, status, claimer, deadline, and submission details; costs 0.001 USDC on Base per call.

## Skill reference

### `fetch-quest-board`

**Origin Quest Board** — Returns a pageable list of quests from Origin Exchange with per-quest ID, title, category, bounty, status, claimer, deadline, and submission details; costs 0.001 USDC on Base per call.

*Use when:* Use when an agent needs to browse or filter available, claimed, submitted, or all quests on Origin Exchange, including bounty amounts, deadlines, and current status labels.

*Not for:* Do not use to claim, submit, or evaluate a quest — this endpoint is read-only and only retrieves the quest board listing.

**Inputs:**

- `status` (string) — Filter quests by lifecycle status. Allowed values: 'open', 'claimed', 'submitted', 'all'. Defaults to 'all' when omitted.

**Returns:** Returns aggregate counts (total, open, claimed, submitted, accepted, rejected) and a quests array where each entry includes id, title, category, bounty in token units, statusLabel, claimer address, deadlineISO, submissionHash, and evaluator address.

**Example:** `GET https://origin-exchange.fly.dev/quest/board?status=open`

---
