---
title: "Open API from ZuploContext"
description: ""
canonicalUrl: "https://zuplo.com/changelog/2023/05/05/open-api-from-context"
pageType: "changelog"
date: "2023-05-05"
tags: "runtime"
---
The `context.route` property on the
[`ZuploContext`](/docs/articles/zuplo-context) object now exposes the raw Open
API operation JSON for use in handlers or policies.

```ts
export async function myHandler(request: ZuploRequest, context: ZuploContext) {
  const raw = context.route.raw();
  return raw;
}
```