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

# Operations get

# Get Operation

Retrieve a single operation by its ID.

**`GET /operations/{id}`**  ·  🔒 Auth required

***

## Path parameters

| Parameter | Description                              |
| --------- | ---------------------------------------- |
| `id`      | Operation ID, e.g. `op_01hz8f3k9m2p6q7r` |

***

## Response `200 OK`

```json theme={null}
{
  "id": "op_01hz8f3k9m2p6q7r",
  "wallet_id": "wal_01hy2c4n8j5r3d6e",
  "type": "expense",
  "status": "completed",
  "amount": 150000,
  "asset": "BTC",
  "description": "Hardware wallet purchase",
  "category": "equipment",
  "reference": "ORD-8821",
  "metadata": {
    "tx_hash": "0x4e3a..."
  },
  "created_at": "2024-09-15T10:30:00Z",
  "completed_at": "2024-09-15T10:30:02Z"
}
```

***

## Errors

| Code        | HTTP | Cause               |
| ----------- | ---- | ------------------- |
| `NOT_FOUND` | 404  | Operation not found |

***

## Example

```bash theme={null}
curl https://api.sertexity.com/v1/operations/op_01hz8f3k9m2p6q7r \
  -H "Authorization: Bearer <access_token>"
```
