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

# Get a version

> Fetch a single operating-instructions version by its number

`GET /api/v2/storefront/operating-instructions/{version}`

Fetches one operating-instructions version by its per-storefront version number. Use this to read a historical version before deciding whether to re-activate it.

## Request

```bash theme={null}
curl "https://api.interchange.io/api/v2/storefront/operating-instructions/3" \
  -H "Authorization: Bearer $SCOPE3_API_KEY"
```

## Parameters

| Field     | Type    | Required | Notes                                                                           |
| --------- | ------- | -------- | ------------------------------------------------------------------------------- |
| `version` | integer | Yes      | Path param — per-storefront version number. Monotone, starts at 1, never reused |

## Response

```json theme={null}
{
  "id": "43",
  "storefrontId": "1234",
  "version": 3,
  "content": "# Merchandising rules\n\nLead with premium CTV inventory. Never surface remnant display to holding-company buyers.",
  "notes": "clarify product packaging",
  "isActive": true,
  "createdAt": "2026-06-01T14:30:00Z",
  "createdBy": "5567",
  "ownershipIssues": []
}
```

Returns the matching `OperatingInstructionsResponse`. `isActive` reflects whether this is currently the active version.

## Errors

* `404 NOT_FOUND` — no version with that number exists for your storefront.

See [Errors](/v2/reference/errors) for the full error contract.

## Related

<CardGroup cols={2}>
  <Card title="List versions" href="/v2/storefront/operating-instructions/tasks/list-versions" icon="list">
    Find the version number to fetch
  </Card>

  <Card title="Activate version" href="/v2/storefront/operating-instructions/tasks/activate-version" icon="toggle-on">
    Make this version the active one
  </Card>

  <Card title="Operating instructions tasks" href="/v2/storefront/operating-instructions/tasks" icon="list-check">
    All operating-instructions operations
  </Card>

  <Card title="Operating instructions overview" href="/v2/storefront/operating-instructions/overview" icon="scroll">
    Concepts and versioning model
  </Card>
</CardGroup>
