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

# Get Timeline Stats

> Returns timeline stats for a single artist wallet: how many moments appear on their timeline (`created_count`) and how much ETH/USDC they archived as a fee recipient (`eth_archived`, `usdc_archived`).



## OpenAPI

````yaml GET /stats/timeline
openapi: 3.1.0
info:
  title: In•Process API
  description: >-
    The In•Process API enables browsing and managing moments from timelines.
    Retrieve moments from a specific artist's timeline, browse the in•process
    collective timeline, or filter by collection. The API supports creating
    moments, managing collections, handling payments, and interacting with the
    In•Process protocol ecosystem.
  version: 1.0.0
servers:
  - url: https://api.inprocess.world/api
    description: Production server
security: []
paths:
  /stats/timeline:
    get:
      summary: Get Timeline Stats
      description: >-
        Returns timeline stats for a single artist wallet: how many moments
        appear on their timeline (`created_count`) and how much ETH/USDC they
        archived as a fee recipient (`eth_archived`, `usdc_archived`).
      operationId: getTimelineStats
      parameters:
        - name: artist
          in: query
          required: true
          description: >-
            Artist wallet address (`0x` + 40 hex). Case-insensitive; normalized
            to lowercase.
          schema:
            type: string
            pattern: ^0x[a-fA-F0-9]{40}$
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TimelineStats'
              example:
                created_count: 12
                eth_archived: '0.1'
                usdc_archived: '25'
        '400':
          description: Invalid query parameters
          content:
            application/json:
              schema:
                type: object
                required:
                  - message
                  - errors
                properties:
                  message:
                    type: string
                  errors:
                    type: array
                    items:
                      type: object
                      required:
                        - field
                        - message
                      properties:
                        field:
                          type: string
                        message:
                          type: string
              example:
                message: Invalid input
                errors:
                  - field: artist
                    message: Required
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security: []
components:
  schemas:
    TimelineStats:
      type: object
      required:
        - created_count
        - eth_archived
        - usdc_archived
      properties:
        created_count:
          type: integer
          format: int64
          description: >-
            Number of moments on the artist's timeline (creator moments plus
            mutual admin moments).
        eth_archived:
          type: string
          description: >-
            Total ETH archived for the artist as a fee recipient (human-readable
            decimal string).
        usdc_archived:
          type: string
          description: >-
            Total USDC archived for the artist as a fee recipient
            (human-readable decimal string).
    Error:
      type: object
      required:
        - status
        - message
      properties:
        status:
          type: string
          enum:
            - error
          description: Error status
        message:
          type: string
          description: Error message
        errors:
          type: array
          description: >-
            Optional array of field-level validation errors. Typically included
            in 400 Bad Request responses for validation errors.
          items:
            type: object
            required:
              - field
              - message
            properties:
              field:
                type: string
                description: The field name that failed validation
              message:
                type: string
                description: The validation error message for this field

````