> ## Documentation Index
> Fetch the complete documentation index at: https://docs.scripxhq.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get the SRR history

> GET /public/rates/{scheme}/history returns the daily Scrip Reference Rate series behind today number, up to 90 days, oldest to newest. Public, no API key.

The daily series behind the [SRR](/core-concepts#the-scrip-reference-rate-srr) for one scheme, oldest to newest. Public, no key.

```bash theme={"dark"}
curl "https://api.scripxhq.com/public/rates/RODTEP/history?days=30"
```

## Parameters

| Parameter | In    | Default  | Notes                                                  |
| --------- | ----- | -------- | ------------------------------------------------------ |
| `scheme`  | path  | required | `RODTEP` or `ROSCTL`. An unknown scheme returns `400`. |
| `days`    | query | `30`     | Clamped to the range 1 to 90.                          |

## Response

```json theme={"dark"}
{
  "scheme": "RODTEP",
  "points": [
    {
      "date": "2026-06-26",
      "rate_bps": 9780,
      "high_bps": 9795,
      "low_bps": 9770,
      "volume_paise": 4200000000,
      "surge_mult": 1.0
    },
    {
      "date": "2026-07-25",
      "rate_bps": 9820,
      "high_bps": 9835,
      "low_bps": 9790,
      "volume_paise": 5100000000,
      "surge_mult": 1.0
    }
  ]
}
```

## Fields

| Field                  | Meaning                                 |
| ---------------------- | --------------------------------------- |
| `date`                 | The trading day.                        |
| `rate_bps`             | That day's SRR close, in bps of face.   |
| `high_bps` / `low_bps` | That day's range.                       |
| `volume_paise`         | Settled face traded that day, in paise. |
| `surge_mult`           | That day's pressure multiplier.         |

Points are ordered oldest to newest, capped at `days`. Response is `Cache-Control: public, max-age=300`, rate-limited per IP.

## Related

* [Get the SRR](/api-reference/public/rates)
* [Money and price](/annexure/money-and-price)

**Terms used here:** [scrip](/annexure/terminology#duty-credit-scrip), [scheme](/annexure/terminology#scheme), [paise](/annexure/terminology#paise), [bps](/annexure/terminology#basis-point), [SRR](/annexure/terminology#scrip-reference-rate). Full list in the [terminology annexure](/annexure/terminology).
