---
title: "Trailing returns (one_day .. max)"
method: GET
path: "/api/v2/quotes/{symbol}/recent-performance"
tags: ["Finance"]
---

# Trailing returns (one_day .. max)

`GET /api/v2/quotes/{symbol}/recent-performance`

Trailing return percentages computed from the symbol's full daily price history (adj_close total-return basis): one_day, wtd, one_week, mtd, one_month, qtd, three_month, six_month, ytd, one/two/three/four/five/ten_year and max (inception). Works for equities and ETFs. Values are percent; a window is null when the history is too short to span it.

## Path parameters

- `symbol` string, required — Security ticker symbol.

## Response `200`

Trailing return ladder across standard windows.

- EnvelopeRecentPerformanceResponseV2
  - `data` RecentPerformanceResponseV2, required — Trailing-return ladder computed from daily price history. Returns are PERCENT (e.g. 12.3456 = +12.3456%); null where history is too short.
    - `symbol` string, required — Security ticker symbol.
    - `as_of_date` string, nullable — Date of the latest price bar used (YYYY-MM-DD).
    - `bars_analyzed` integer — Number of daily bars in the computed series.
    - `one_day` number, nullable — One-day trailing return (percent).
    - `wtd` number, nullable — Week-to-date return (percent).
    - `one_week` number, nullable — One-week trailing return (percent).
    - `mtd` number, nullable — Month-to-date return (percent).
    - `one_month` number, nullable — One-month trailing return (percent).
    - `qtd` number, nullable — Quarter-to-date return (percent).
    - `three_month` number, nullable — Three-month trailing return (percent).
    - `six_month` number, nullable — Six-month trailing return (percent).
    - `ytd` number, nullable — Year-to-date return (percent).
    - `one_year` number, nullable — One-year trailing return (percent).
    - `two_year` number, nullable — Two-year trailing return (percent).
    - `three_year` number, nullable — Three-year trailing return (percent).
    - `four_year` number, nullable — Four-year trailing return (percent).
    - `five_year` number, nullable — Five-year trailing return (percent).
    - `ten_year` number, nullable — Ten-year trailing return (percent).
    - `max` number, nullable — Inception-to-now (max) return (percent).
  - `meta` SugraMeta, required — Metadata attached to every /api/v1/* response envelope.
    - `endpoint` string, required — Requested endpoint path.
    - `data_time` string, required — ISO 8601 UTC timestamp of the source data, not of the request.
    - `response_time` string, required — ISO 8601 UTC timestamp when this response was produced.
    - `provider` string, required — API name and version.
    - `source` string, nullable — Identifier of the primary upstream source used for this response.
    - `attribution` string, nullable — Human-readable attribution mandated by an upstream source (e.g. a securities regulator or self-regulatory organization). Present only on responses whose source requires the owner and source to be clearly identified. Do not remove or alter it when using the response.
    - `fallback_used` boolean, nullable — True when the primary source failed and a fallback produced the data.
    - `fallback_chain` string[], nullable — Ordered list of sources attempted, in the order they were tried.
    - `cached` boolean, nullable — True when this response was served from the internal cache.
    - `stale` boolean, nullable — True when the cached response was returned after the upstream rate-limited or errored. Clients can use this to detect degraded data.

## Other responses

- `401` — Missing or invalid `x-api-key` header.
- `422` — Validation Error
- `429` — Daily rate limit exceeded. Check `X-RateLimit-Reset` for the next window.
- `503` — Upstream source is temporarily unavailable. Retry after a short delay.

---

[API](https://skmtc.net/sugra/apis/sugra-api.md) · [All operations](https://skmtc.net/sugra/apis/sugra-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/sugra/sugra-api/versions/4e2740743eb4/schema)
