---
title: "Get Account Activity Logs"
method: GET
path: "/v1/account/activity"
tags: ["Account & Keys"]
---

# Get Account Activity Logs

`GET /v1/account/activity`

Fetch account activity logs. Requires scope: account:activity

## Query parameters

- `limit` integer
- `offset` integer

## Response `200`

Successful Response

- AccountActivityResponse
  - `data` AccountActivityItem[], required — List of request logs.
    - `model` string, required — The ID of the model used.
    - `cost` number, required — The cost of the request in USD.
    - `created_at` string, required — The ISO timestamp of the request.
    - `input_tokens` integer, nullable — Number of input tokens consumed.
    - `output_tokens` integer, nullable — Number of output tokens generated.
    - `cache_creation_input_tokens` integer, nullable — Tokens written to the prompt cache.
    - `cache_read_input_tokens` integer, nullable — Tokens read from the prompt cache.
  - `limit` integer, required — The limit parameter used.
  - `offset` integer, required — The offset parameter used.

## Other responses

- `400` — Bad Request - Invalid limit/offset.
- `401` — Unauthorized - Missing or invalid API key.
- `422` — Validation Error
- `429` — Too Many Requests - Rate limit exceeded.
- `500` — Internal Server Error.

---

[API](https://skmtc.dev/routeway/apis/routeway-api.md) · [All operations](https://skmtc.dev/routeway/apis/routeway-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/routeway/routeway-api/revisions/b6f03282a96b/schema)
