Skip to content

Catalog Curation

Platform partners can control which connectors from the OneHazel marketplace are visible to their operators. This lets you curate a tailored integration catalogue for your platform's specific needs.

View the full catalog

GET /platform-api/catalog

Returns the complete marketplace catalog with all available connectors.

Example

bash
curl https://api.onehazel.com/platform-api/catalog \
  -H "Authorization: Bearer oh_platform_YOUR_KEY"

Response

The catalog includes connector metadata: name, category, base URL, authentication type, available endpoints, and whether an OpenAPI spec is available.

Get visibility rules

GET /platform-api/catalog/visibility

Returns the current visibility configuration — which connectors are shown or hidden for your platform's operators.

Example

bash
curl https://api.onehazel.com/platform-api/catalog/visibility \
  -H "Authorization: Bearer oh_platform_YOUR_KEY"

Update visibility rules

PUT /platform-api/catalog/visibility

Bulk update visibility rules to show or hide connectors for your operators.

Example

bash
curl -X PUT https://api.onehazel.com/platform-api/catalog/visibility \
  -H "Authorization: Bearer oh_platform_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "rules": [
      { "connectorId": "stripe", "visible": true },
      { "connectorId": "adyen", "visible": true },
      { "connectorId": "sumsub", "visible": true },
      { "connectorId": "some-unused-connector", "visible": false }
    ]
  }'

Use cases

Approved integrations only

Hide all connectors by default and only enable the ones your compliance team has approved:

  1. Set a default rule to hide all
  2. Explicitly enable approved connectors via visibility rules

Industry-specific curation

If your platform serves a specific vertical (e.g. iGaming), show only the connectors relevant to that industry — KYC providers, payment processors, sports data feeds, responsible gaming tools — and hide unrelated ones.

Tiered access

Different operator plans can see different connectors. Use visibility rules in combination with plan metadata to control access:

  • Starter operators see basic payment and KYC connectors
  • Professional operators see the full iGaming connector set
  • Enterprise operators see everything including custom connectors