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

# Usage history

Paginated log of recent requests for the workspace. Each entry records the URL, duration, status, cache hit, proxy mode (`standard` / `premium`), credits charged, and timestamp.

Use this endpoint to audit spend, find spike culprits, or build a stats dashboard. The dashboard's Activity view is a thin wrapper on top of this feed.


## OpenAPI

````yaml openapi.json GET /v1/usage/history
openapi: 3.1.0
info:
  title: Reader API
  version: 1.0.0
  description: >-
    Reader turns any URL into clean markdown for LLMs. One endpoint (`POST
    /v1/read`) handles scrape, batch, and crawl operations. See
    https://reader.dev/docs for concepts and guides.
servers:
  - url: https://api.reader.dev
    description: Production
security: []
tags:
  - name: Read
    description: Scrape, batch, and crawl operations
  - name: Jobs
    description: Async job management
  - name: Webhooks
    description: Event subscriptions
  - name: Account
    description: API keys, credits, and usage
paths:
  /v1/usage/history:
    get:
      tags:
        - Account
      summary: List usage history
      parameters:
        - schema:
            type: integer
            minimum: 0
          required: false
          name: skip
          in: query
        - schema:
            type: integer
            minimum: 1
            maximum: 100
          required: false
          name: limit
          in: query
      responses:
        '200':
          description: Paginated usage history
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - true
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/UsageEntry'
                  pagination:
                    $ref: '#/components/schemas/Pagination'
                required:
                  - success
                  - data
                  - pagination
      security:
        - ApiKeyAuth: []
components:
  schemas:
    UsageEntry:
      type: object
      properties:
        id:
          type: string
        url:
          type: string
          format: uri
        duration:
          type: integer
        status:
          type: string
          enum:
            - success
            - error
        cached:
          type: boolean
        proxyMode:
          allOf:
            - $ref: '#/components/schemas/ResolvedProxyMode'
            - type:
                - string
                - 'null'
        credits:
          type: integer
        error:
          type:
            - string
            - 'null'
        createdAt:
          type: string
          format: date-time
      required:
        - id
        - url
        - duration
        - status
        - cached
        - proxyMode
        - credits
        - error
        - createdAt
    Pagination:
      type: object
      properties:
        total:
          type: integer
          example: 1234
        skip:
          type: integer
          example: 0
        limit:
          type: integer
          example: 20
        hasMore:
          type: boolean
          example: true
        next:
          type: string
          format: uri
          example: https://api.reader.dev/v1/jobs/abc?skip=20&limit=20
      required:
        - total
        - skip
        - limit
        - hasMore
    ResolvedProxyMode:
      type: string
      enum:
        - standard
        - premium
      description: >-
        The proxy mode that actually ran: `standard` (datacenter) or `premium`
        (residential). Omitted on cache hits.
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````