Skip to main content
GET
/
vaults
/
{address}
/
share-price-history
Get Vault Share Price History
curl --request GET \
  --url https://api.webacy.com/vaults/{address}/share-price-history \
  --header 'x-api-key: <api-key>'
{
  "stale": false,
  "days": 30,
  "count": 30,
  "from": "2026-03-30T00:00:00.000Z",
  "to": "2026-04-28T00:00:00.000Z",
  "latest": {
    "ts": "2026-04-28T00:00:00.000Z",
    "share_price_usd": 1.229126764047821,
    "apy_trailing_7d": 0.05067916458779709,
    "apy_trailing_30d": 0.04812
  },
  "series": [
    {
      "ts": "2026-03-30T00:00:00.000Z",
      "share_price_usd": 1.225769901908378,
      "apy_trailing_7d": null
    },
    {
      "ts": "2026-04-28T00:00:00.000Z",
      "share_price_usd": 1.229126764047821,
      "apy_trailing_7d": 0.05067916458779709
    }
  ]
}

Documentation Index

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

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

Authorizations

x-api-key
string
header
required

Path Parameters

address
string
required

Vault contract address

Pattern: ^0x[a-fA-F0-9]{40}$

Query Parameters

chain
enum<string>
required

Blockchain network where the vault is deployed

Available options:
eth,
arb,
base,
opt,
pol,
bsc
range
enum<string>
default:30d

Window length to return. Defaults to 30d when omitted.

Available options:
7d,
30d,
60d,
3m

Response

Daily share-price series with per-point trailing 7-day APY plus a hoisted latest aggregate that adds trailing 30-day APY