Latest version and this wallet's price
check_versionWraps GET /api/v/:owner/:slug. The cheap call to make before every run: the latest version, when it was published, and the price. With wallet_signature it also answers what that wallet already owns and what the next fetch would cost it — price_kind is new, update, free or owned. Without one it never reveals what any address owns.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | The listing slug, e.g. `humanizer`. | |
| owner | Yes | The creator handle, e.g. `adrian`. | |
| wallet_signature | No | An `X-Wallet-Signature` value: `<address>.<nonce>.<signature>`, where the nonce comes from `POST /api/auth/challenge` and the signature is EIP-191 over the challenge message. Single use. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | ||
| owned | No | Only with a wallet signature: the newest version this wallet holds. | |
| owner | Yes | ||
| latest | Yes | ||
| status | Yes | ||
| entitled | No | Only with a wallet signature: true when the next fetch is free. | |
| price_kind | No | ||
| price_micro | Yes | Micro-USDC. `9000000` is $9.00. | |
| all_versions | No | ||
| published_at | Yes | ||
| releases_url | Yes | ||
| resource_endpoint | Yes | ||
| update_price_micro | Yes | `0` means updates are included for life once bought (FR-16). |