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

# Public ARD ai-catalog.json for an organization

> Returns the organization's Agentic Resource Discovery (ARD) catalog: one entry per listed agent, each carrying its x402 payment terms (plan, price, settlement network) in `metadata`. Crawlable by ARD registries. Only active Premium/Enterprise organizations are served; any other org (Lapsed or non-existent) returns 404. Public endpoint — no authentication required.



## OpenAPI

````yaml /api-reference/organizations-openapi.json get /organizations/{orgId}/ai-catalog.json
openapi: 3.0.0
info:
  title: Nevermined Organizations API
  description: >-
    Manage a Nevermined organization programmatically — members, tiers, groups &
    budgets, treasury wallets, customers, webhooks, analytics, and
    agent-discovery surfaces.
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.sandbox.nevermined.app/api/v1
    description: Sandbox
  - url: https://api.live.nevermined.app/api/v1
    description: Live
security: []
tags:
  - name: Organizations
    x-group: General
    description: Organization settings, members & roles, and workspace context.
  - name: Organizations - Billing
    x-group: Billing
    description: Tiers, subscriptions, invoices, checkout, and the public tier catalog.
  - name: Groups
    x-group: Groups & Budgets
    description: Organization groups, per-group budgets, and shared payment methods.
  - name: Organizations - Wallets
    x-group: Wallets
    description: Custodial stablecoin treasury wallets.
  - name: Organizations - Customers
    x-group: Customers
    description: The white-label customer CRM (Enterprise).
  - name: Organizations - Analytics
    x-group: Analytics
    description: Revenue, MRR, usage, conversion, and per-member metrics.
  - name: Organizations - Webhooks
    x-group: Webhooks
    description: Outbound webhook subscriptions and deliveries.
  - name: Organizations - Activity
    x-group: Activity
    description: The organization activity feed.
  - name: Organizations - Realtime
    x-group: Realtime
    description: Realtime WebSocket secret management (Enterprise).
  - name: Invitations
    x-group: Invitations
    description: Invite people to an organization.
  - name: Organizations - Integration
    x-group: Agent Discovery
    description: >-
      Public agent-discovery surfaces (llms.txt, agentic-instructions.md,
      ai-catalog.json).
paths:
  /organizations/{orgId}/ai-catalog.json:
    get:
      tags:
        - Organizations - Integration
      summary: Public ARD ai-catalog.json for an organization
      description: >-
        Returns the organization's Agentic Resource Discovery (ARD) catalog: one
        entry per listed agent, each carrying its x402 payment terms (plan,
        price, settlement network) in `metadata`. Crawlable by ARD registries.
        Only active Premium/Enterprise organizations are served; any other org
        (Lapsed or non-existent) returns 404. Public endpoint — no
        authentication required.
      operationId: OrganizationsIntegrationController_aiCatalog
      parameters:
        - name: orgId
          required: true
          in: path
          description: Organization identifier
          schema:
            type: string
            example: org-abc123
      responses:
        '200':
          description: ARD ai-catalog.json document
          content:
            application/json:
              schema:
                type: object
        '404':
          description: Organization not found or not on a paid tier

````

## Related topics

- [Programmatic & Agentic Access](/docs/solutions/organizations/programmatic-access.md)
- [List the active hybrid-tier catalog](/docs/api-reference/organizations--billing/list-the-active-hybrid-tier-catalog.md)
- [Plans & Billing](/docs/solutions/organizations/plans-and-billing.md)
- [Public agentic instructions for an organization](/docs/api-reference/organizations--integration/public-agentic-instructions-for-an-organization.md)
- [Get public info for a pending invitation by token](/docs/api-reference/invitations/get-public-info-for-a-pending-invitation-by-token.md)
