> ## 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.

# Credential detail

> Returns a single credential with its full profile: the schema-defined data points (field name, type, required flag), issuer identity (name, DID, origin), traction metrics (unique holders, total issuances, total verifications), linked verification programs, and availability window (accessible start/end, expiration duration, first/last issuance timestamps).



## OpenAPI

````yaml GET /catalog/credentials/{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/credentials/{id}:
    get:
      tags:
        - Catalog
      summary: Credential detail
      description: >-
        Returns a single credential with its full profile: the schema-defined
        data points (field name, type, required flag), issuer identity (name,
        DID, origin), traction metrics (unique holders, total issuances, total
        verifications), linked verification programs, and availability window
        (accessible start/end, expiration duration, first/last issuance
        timestamps).
      operationId: getCredentialDetail
      parameters:
        - name: id
          in: path
          required: true
          description: Credential ID.
          schema:
            type: string
          example: c21s70g0i54sn0023172Cv
      responses:
        '200':
          description: Credential with full detail.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CatalogApiResponse'
              example:
                code: 80000000
                msg: success
                data:
                  credentialId: c21s70g0i54sn0023172Cv
                  name: Age Verification
                  category: identity
                  issuer:
                    issuerId: iss_01
                    name: Acme Corp
                    issuerDid: did:air:id:test:5P44fsVUhPctDTWH2Nz26pZJFsg6CqyiAELTGeVQDB
                    issuerFrom: dashboard
                  dataPoints:
                    - title: Age
                      type: integer
                      name: age
                      isRequired: true
                      description: User's age in years
                  schema:
                    schemaId: sch_01HX
                    title: KYC Identity
                    description: Basic identity verification schema
                  traction:
                    holderCount: 120
                    issuanceCount: 200
                    verificationCount: 85
                  programs:
                    - programId: prg_01
                      name: Age Gate
                      verifierName: Verify Inc
                      verificationCount: 85
                  createdAt: '2026-01-15T10:30:00Z'
                timestamp: 1772530828000
        '404':
          description: Credential not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                error: 404
                message: Credential 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.

````