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

# List Recent Alpha Calls



## OpenAPI

````yaml GET /api/v2/alpha/recent-calls
openapi: 3.0.3
info:
  description: Multi-chain DEX trading API for developers
  license:
    name: ''
  title: Shuriken API v2
  version: 2.0.0
servers:
  - url: https://api.shuriken.trade
security: []
tags:
  - description: SplitNOW cross-chain split plan + execute
    name: V2 Splits
  - description: Wallet archive lifecycle (archive / unarchive / bulk-archive)
    name: Wallets
  - description: Token discovery, metadata, and pricing
    name: V2 Tokens
  - description: Quote and execute swaps
    name: V2 Swap
  - description: Limit orders and stop-loss
    name: V2 Trigger
  - description: Managed-agent invocation
    name: V2 Agents
  - description: Portfolio positions and PnL
    name: V2 Portfolio
  - description: User account management
    name: V2 Account
  - description: WebSocket stream discovery, session bootstrap, and channel authorization
    name: V2 WebSocket
  - description: Perpetual trading on Hyperliquid
    name: V2 Perps
  - description: Agent-proposed trade suggestions
    name: V2 Suggestions
paths:
  /api/v2/alpha/recent-calls:
    get:
      tags:
        - alpha
      operationId: list_alpha_recent_calls
      parameters:
        - description: Maximum calls to return
          in: query
          name: limit
          required: false
          schema:
            format: int32
            minimum: 0
            type: integer
        - description: Filter by source name
          in: query
          name: sourceName
          required: false
          schema:
            type: string
        - description: Filter by connection ID
          in: query
          name: connectionId
          required: false
          schema:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse_RecentCallsResult'
          description: Recent alpha calls
        '401':
          description: Unauthenticated
        '403':
          description: Insufficient scope
      security:
        - bearer_auth: []
components:
  schemas:
    ApiResponse_RecentCallsResult:
      description: V2 success response envelope
      properties:
        data:
          properties:
            calls:
              items:
                $ref: '#/components/schemas/RecentCallItem'
              type: array
            totalCount:
              format: int32
              minimum: 0
              type: integer
          required:
            - calls
            - totalCount
          type: object
        pagination:
          $ref: '#/components/schemas/PaginationInfo'
          nullable: true
        requestId:
          type: string
      required:
        - data
        - requestId
      type: object
    RecentCallItem:
      properties:
        chain:
          type: string
        currentPriceUsd:
          nullable: true
          type: string
        firstSeenAt:
          format: int64
          type: integer
        lastSeenAt:
          format: int64
          type: integer
        lastSource:
          $ref: '#/components/schemas/RecentCallSourceItem'
          nullable: true
        liquidityUsdAtCall:
          nullable: true
          type: string
        marketCapUsdAtCall:
          nullable: true
          type: string
        mentionCount:
          format: int32
          minimum: 0
          type: integer
        priceUsdAtCall:
          nullable: true
          type: string
        tokenAddress:
          type: string
        tokenName:
          nullable: true
          type: string
        tokenSymbol:
          nullable: true
          type: string
      required:
        - tokenAddress
        - chain
        - firstSeenAt
        - lastSeenAt
        - mentionCount
      type: object
    PaginationInfo:
      description: Page-based pagination info (per RFC)
      properties:
        hasMore:
          type: boolean
        limit:
          format: int32
          minimum: 0
          type: integer
        page:
          format: int32
          minimum: 0
          type: integer
        total:
          format: int32
          minimum: 0
          nullable: true
          type: integer
      required:
        - page
        - limit
        - hasMore
      type: object
    RecentCallSourceItem:
      properties:
        authorUsername:
          nullable: true
          type: string
        channelName:
          nullable: true
          type: string
        connectionId:
          nullable: true
          type: string
        messagePreview:
          nullable: true
          type: string
        platform:
          type: string
        sourceName:
          nullable: true
          type: string
      required:
        - platform
      type: object
  securitySchemes:
    bearer_auth:
      bearerFormat: JWT or sk_{keyId}_{secret}
      description: >-
        Use `Authorization: Bearer <jwt>` for user auth or `Authorization:
        Bearer sk_{keyId}_{secret}` for API key auth.
      scheme: bearer
      type: http

````