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

# Benchmarks

> SDK methods for the Benchmarks resource.

Full concept: [Benchmarks](/guides/concepts/benchmarks). REST reference: [/api-reference/resources/benchmarks](/api-reference/resources/benchmarks).

## Methods

```typescript theme={null}
verial.benchmarks.list({ cursor?, limit? })
verial.benchmarks.create({ name, environmentId, description? })
verial.benchmarks.get({ id })
verial.benchmarks.update({ id, name?, description? })
verial.benchmarks.delete({ id })
```

## Example

```typescript theme={null}
const benchmark = await verial.benchmarks.create({
  name: 'Prior Auth Workflow',
  environmentId: 'env_01H...',
})
```
