Assets

Retrieve assets

get

Fetch a list of all assets.

Responses
200

A list of assets.

application/json
get
GET /api/assets HTTP/1.1
Host: app.nest.credit
Accept: */*
[
  {
    "slug": "text",
    "name": "text",
    "description": "text"
  }
]

Retrieve asset details by slug

get

Fetch detailed information about an asset using its slug.

Path parameters
slugstringRequired

Unique slug identifier for the asset.

Responses
200

Asset details.

application/json
Responseall of
get
GET /api/asset/{slug} HTTP/1.1
Host: app.nest.credit
Accept: */*
{
  "slug": "text",
  "name": "text",
  "description": "text",
  "image": "text",
  "targetApy": 1,
  "custodians": [
    "text"
  ],
  "website": "text",
  "scorecardUrl": "text",
  "category": "text",
  "regulatory": "text"
}