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

# Account feed

> A leader's recent bets, newest first. Powers copy-trading: a mirrorable item is one whose market is still open.



## OpenAPI

````yaml /api-reference/openapi.json get /accounts/{address}/feed
openapi: 3.1.0
info:
  title: counsel API
  version: 1.0.0
  description: >-
    Public, read-only HTTP API for counsel, an L1-native parimutuel prediction
    market on the XRP Ledger. No API key, no auth, all responses JSON. It
    exposes live market state, indicative odds, unsigned bet construction,
    account positions and profiles, a copy-trading feed, and the
    SourceTag-attributed leaderboard.
  contact:
    name: counsel
    url: https://counsel.markets
  license:
    name: MIT
servers:
  - url: https://api.counsel.markets
    description: Canonical API host
  - url: https://counsel.markets/api/v1
    description: Path-based equivalent
security: []
paths:
  /accounts/{address}/feed:
    get:
      tags:
        - Accounts
      summary: Account feed
      description: >-
        A leader's recent bets, newest first. Powers copy-trading: a mirrorable
        item is one whose market is still open.
      operationId: getFeed
      parameters:
        - name: address
          in: path
          required: true
          schema:
            type: string
          description: XRPL classic address.
          example: rPT1Sjq2YGrBMTttX4GZHjKu9dyfzbpAYe
      responses:
        '200':
          description: Feed
          content:
            application/json:
              schema:
                type: object
                required:
                  - account
                  - feed
                properties:
                  account:
                    type: string
                  feed:
                    type: array
                    items:
                      $ref: '#/components/schemas/FeedItem'
        '400':
          description: Invalid address
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    FeedItem:
      type: object
      required:
        - market_id
        - question
        - outcome
        - outcome_label
        - amount_xrp
        - phase
        - status
        - mirrorable
        - timestamp
        - hash
      properties:
        market_id:
          type: string
        question:
          type: string
        outcome:
          type: integer
        outcome_label:
          type: string
        amount_xrp:
          type: number
        phase:
          type: string
        status:
          type: string
          enum:
            - open
            - resolved
            - void
        mirrorable:
          type: boolean
          description: True when the market is still open, so the bet can be mirrored.
        timestamp:
          type:
            - integer
            - 'null'
          description: Unix ms of the bet, or null.
        hash:
          type: string
          description: XRPL transaction hash of the bet.
    Error:
      type: object
      properties:
        error:
          type: string
          example: market not found

````