Skip to main content
GET
/
v1
/
generic-assets
List Generic Assets
curl --request GET \
  --url https://api.rivermarkets.com/v1/generic-assets \
  --header 'X-River-Key-Id: <api-key>' \
  --header 'X-River-Signature: <api-key>' \
  --header 'X-River-Timestamp: <api-key>'
{
  "assets": [
    {
      "generic_asset_id": "<string>",
      "name": "<string>",
      "river_ids": [
        123
      ],
      "description": "<string>",
      "category": "<string>",
      "subcategory": "<string>",
      "resolves_at": "2023-11-07T05:31:56Z",
      "owner_subaccount_id": "<string>",
      "status": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.rivermarkets.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-River-Key-Id
string
header
required

UUID of your API key (from Settings → API Keys).

X-River-Timestamp
string
header
required

Current unix seconds. Must be within 30s of server time.

X-River-Signature
string
header
required

Base64 Ed25519 signature over the canonical request: METHOD\nPATH\nSORTED_QUERY\nTIMESTAMP\nSHA256(body) hex. See /api-reference/authentication for the full recipe.

Query Parameters

category
string[] | null

Filter by category. Repeat to filter to multiple categories.

subcategory
string | null

Filter by subcategory

owner
string | null

'me' for own baskets only, 'platform' for public only

Response

Successful Response

assets
GenericAssetResponse · object[]
required