Skip to main content
GET
/
catalog
/
programs
/
{id}
Program detail
curl --request GET \
  --url https://api.sandbox.mocachain.org/v1/catalog/programs/{id}
{
  "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
}

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.

Path Parameters

id
string
required

Program ID.

Response

Program with accepted credentials.

Standard API response envelope used by all Catalog endpoints.

code
integer

Response code. 80000000 indicates success.

Example:

80000000

msg
string

Human-readable status message.

Example:

"success"

data
any

Response payload. Shape varies per endpoint.

timestamp
integer

UNIX timestamp in milliseconds.

Example:

1772530828000