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

# Developer agent detail

> Public. Includes subscriber count and latest review when available. Accepts optional auth to enrich `isSubscribed`.



## OpenAPI

````yaml https://mcp.echozero.app/api/docs-json get /api/v1/developer-agents/{id}
openapi: 3.0.0
info:
  title: EchoZero MCP API
  description: >-
    EchoZero MCP Server - Developer API for agent management, trading,
    marketplace, and AI chat.


    **Rate Limiting:** All endpoints enforce per-API-key rate limits. Tiers:
    free (60 req/min), standard (300 req/min), premium (1000 req/min). Every
    response includes `X-RateLimit-Limit`, `X-RateLimit-Remaining`,
    `X-RateLimit-Reset` headers. Exceeding the limit returns `429 Too Many
    Requests` with a `Retry-After` header.
  version: '1.0'
  contact: {}
servers:
  - url: https://mcp.echozero.app
    description: Production
security: []
tags:
  - name: MCP Protocol
    description: >-
      Model Context Protocol (Streamable HTTP): `/mcp`, `/mcp/sse` — not under
      `/api`; same API key as REST
  - name: Health
    description: Server health check
  - name: API Keys
    description: API key generation, listing, and revocation
  - name: User
    description: >-
      User profile, sessions, social, onboarding, internal agent subscriptions,
      and bot activations (v1: /v1/users/me)
  - name: Token
    description: Token data and trending
  - name: Trade
    description: Trade execution and history
  - name: Strategy
    description: Strategy (trading bot) configuration and control
  - name: Agent
    description: Agent registration and management
  - name: AI
    description: AI chat, intent, and insights
  - name: Wallet
    description: Wallet operations, deposits, and withdrawals
  - name: Notification
    description: Notification management and settings
  - name: Auth
    description: >-
      Public authentication: signup / login lookup, code verification, Google
      OAuth, refresh, and sign-out. Returns `accessToken` / `refreshToken` in
      the JSON body.
  - name: OAuth
    description: >-
      OAuth 2.1 authorization-code + PKCE for AI assistant clients:
      `/oauth/authorize`, `/oauth/token`, `/oauth/introspect`, `/status`.
  - name: Activity
    description: User trade activity list and search
  - name: Feed
    description: Social activity feed timeline
  - name: Earn
    description: Leaderboard, rewards, and referrals
  - name: Statics
    description: Countries, languages, and static data
  - name: Misc
    description: File uploads and utility endpoints
  - name: Developer
    description: Developer registration and profile
  - name: Developer dashboard
    description: >-
      Per-agent dashboard: subscribers (anonymized), performance detail, signal
      history (v1)
  - name: Developer Agent
    description: Developer agent listings and management
  - name: Developer Agents (Marketplace)
    description: Public browse, search, and subscribe to external developer-listed agents
  - name: Admin
    description: Admin-only endpoints for review, approval, and platform management
  - name: Webhooks
    description: >-
      Inbound provider webhooks (no API key). Telegram signal-bot uses
      `X-Telegram-Bot-Api-Secret-Token` when configured.
paths:
  /api/v1/developer-agents/{id}:
    get:
      tags:
        - Developer Agents (Marketplace)
      summary: Developer agent detail
      description: >-
        Public. Includes subscriber count and latest review when available.
        Accepts optional auth to enrich `isSubscribed`.
      operationId: PublicDeveloperAgentController_detail
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
        - name: x-signature
          in: header
          required: false
          description: >-
            HMAC-SHA256 signature: HMAC-SHA256(secretKey, timestamp + METHOD +
            path + body). Optional -- when omitted, HMAC verification is
            skipped.
          schema:
            type: string
        - name: x-timestamp
          in: header
          required: false
          description: >-
            Request timestamp in epoch milliseconds. Required when x-signature
            is provided. Rejected if drift exceeds 5 minutes.
          schema:
            type: string
      responses:
        '200':
          description: Developer agent detail.
          content:
            application/json:
              schema:
                allOf:
                  - $ref: '#/components/schemas/McpSuccessResponseDto'
                  - properties:
                      data:
                        $ref: '#/components/schemas/PublicDeveloperAgentDetailDto'
        '404':
          description: Not found or not listed.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/McpErrorResponseDto'
components:
  schemas:
    McpSuccessResponseDto:
      type: object
      properties:
        success:
          type: boolean
          example: true
        data:
          type: object
          description: Endpoint-specific payload
          additionalProperties: true
      required:
        - success
        - data
    PublicDeveloperAgentDetailDto:
      type: object
      properties:
        id:
          type: string
        developerId:
          type: string
        name:
          type: string
        description:
          type: string
        strategyDescription:
          type: string
        avatarUrl:
          type: string
        imageUrl:
          type: string
          description: Compatibility alias for old GraphQL consumers. Mirrors `avatarUrl`.
        tags:
          description: Marketplace / discovery tags
          type: array
          items:
            type: string
        pricingModel:
          type: string
          enum:
            - subscription
            - success-fee
            - both
            - free
        monthlyPrice:
          type: number
        successFeePercent:
          type: number
        betaStatus:
          type: string
        betaStartDate:
          type: string
          format: date-time
        maxBetaUsers:
          type: number
        riskLevel:
          type: string
          enum:
            - low
            - medium
            - high
        performanceStats:
          type: object
          additionalProperties: true
        stats:
          $ref: '#/components/schemas/PublicDeveloperAgentStatsDto'
        pnl:
          $ref: '#/components/schemas/PublicDeveloperAgentPnlDto'
        tradeStats:
          $ref: '#/components/schemas/PublicDeveloperAgentTradeStatsDto'
        risk:
          $ref: '#/components/schemas/PublicDeveloperAgentRiskDto'
        followers:
          type: number
          description: >-
            Compatibility field for old GraphQL `followers`; mirrors
            `subscriberCount` when present.
        subscriberCount:
          type: number
          description: Users with an active paid subscription to this agent
        isSubscribed:
          type: boolean
          description: >-
            Present when optional auth credentials are provided on public
            endpoints.
        activeBotCount:
          type: number
          description: Compatibility field with old GraphQL cards.
        totalBotCount:
          type: number
          description: Compatibility field with old GraphQL cards.
        featured:
          type: boolean
        featuredRank:
          type: number
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
        latestReview:
          nullable: true
          allOf:
            - $ref: '#/components/schemas/AgentReviewResponseDto'
        membershipGated:
          type: boolean
          description: >-
            When true, this agent expects subscribers to join the signal
            community (membership check).
        externalSignupUrl:
          type: string
          description: Invite link for the gated community (if `membershipGated`).
      required:
        - id
        - developerId
        - name
        - pricingModel
        - betaStatus
        - riskLevel
        - performanceStats
        - createdAt
        - updatedAt
    McpErrorResponseDto:
      type: object
      properties:
        success:
          type: boolean
          example: false
        error:
          $ref: '#/components/schemas/McpErrorBodyDto'
      required:
        - success
        - error
    PublicDeveloperAgentStatsDto:
      type: object
      properties:
        totalProfitUsd:
          type: number
        roi:
          type: number
        winRate:
          type: number
        totalTrades:
          type: number
        performanceScore:
          type: number
    PublicDeveloperAgentPnlDto:
      type: object
      properties:
        totalProfitUsd:
          type: number
        roi:
          type: number
        avgProfitPerTrade:
          type: number
        maxDrawdown:
          type: number
    PublicDeveloperAgentTradeStatsDto:
      type: object
      properties:
        totalTrades:
          type: number
        wins:
          type: number
        losses:
          type: number
        winRate:
          type: number
        category:
          type: string
    PublicDeveloperAgentRiskDto:
      type: object
      properties:
        level:
          type: string
          enum:
            - low
            - medium
            - high
        botCount:
          type: number
      required:
        - level
        - botCount
    AgentReviewResponseDto:
      type: object
      properties:
        id:
          type: string
        status:
          type: string
        notes:
          type: string
        safetyScore:
          type: number
        reviewedAt:
          type: string
          format: date-time
      required:
        - id
        - status
        - reviewedAt
    McpErrorBodyDto:
      type: object
      properties:
        code:
          type: string
          example: NOT_FOUND
        message:
          type: string
          example: Resource not found
      required:
        - code
        - message

````