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

# Program detail

> Returns a single verification program with the verifier's identity, pricing model, the full list of accepted credentials (each with holder/issuance counts), and the zero-knowledge verification conditions required for each credential (e.g. `age >= 18`).



## OpenAPI

````yaml GET /catalog/programs/{id}
openapi: 3.0.3
info:
  title: Moca Network API
  description: >-
    Server-to-server API for credential issuance, status tracking, catalog
    browsing, and partner operations on the Moca Network.
  version: 1.0.0
  contact:
    name: Moca Network
    url: https://moca.network
servers:
  - url: https://api.sandbox.mocachain.org/v1
    description: Sandbox
  - url: https://mocachain-mainnet.api.air3.com/v1
    description: Production
security:
  - partnerJwt: []
paths:
  /catalog/programs/{id}:
    get:
      tags:
        - Catalog
      summary: Program detail
      description: >-
        Returns a single verification program with the verifier's identity,
        pricing model, the full list of accepted credentials (each with
        holder/issuance counts), and the zero-knowledge verification conditions
        required for each credential (e.g. `age >= 18`).
      operationId: getProgramDetail
      parameters:
        - name: id
          in: path
          required: true
          description: Program ID.
          schema:
            type: string
          example: prg_01
      responses:
        '200':
          description: Program with accepted credentials.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CatalogApiResponse'
              example:
                code: 80000000
                msg: success
                data:
                  programId: prg_01
                  name: Age Gate
                  description: Verify user meets minimum age requirement
                  acceptedCredentials:
                    - credentialId: c21s70g0i54sn0023172Cv
                      name: Age Verification
                      category: identity
                      holderCount: 120
                      issuanceCount: 200
                      verificationConditions:
                        - age >= 18
                  verifierInfo:
                    verifierId: ver_01
                    name: Verify Inc
                    verifierDid: did:air:id:test:7Q33abcDEF
                  traction:
                    verificationCount: 85
                  pricingModel: per-verification
                  createdAt: '2026-02-01T08:00:00Z'
                timestamp: 1772530828000
        '404':
          description: Program not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                error: 404
                message: Program not found
      security: []
      servers:
        - url: https://api.sandbox.mocachain.org/v1
          description: Sandbox (only environment available during pilot)
components:
  schemas:
    CatalogApiResponse:
      type: object
      description: Standard API response envelope used by all Catalog endpoints.
      properties:
        code:
          type: integer
          description: Response code. `80000000` indicates success.
          example: 80000000
        msg:
          type: string
          description: Human-readable status message.
          example: success
        data:
          description: Response payload. Shape varies per endpoint.
        timestamp:
          type: integer
          description: UNIX timestamp in milliseconds.
          example: 1772530828000
    Error:
      type: object
      properties:
        error:
          type: integer
          description: HTTP status code.
        message:
          type: string
          description: Human-readable error description.
  securitySchemes:
    partnerJwt:
      type: apiKey
      in: header
      name: x-partner-auth
      description: >-
        A signed Partner JWT containing `partnerId`, `email`, `scope`, and `exp`
        claims. See [Partner
        Authentication](/airkit/usage/partner-authentication) for setup.

````