CatalogOps Documentation
Healthy product data, automatically governed.
Introduction
CatalogOps is product data health & governance platform. These docs cover installation, core concepts, and the full API reference.
Quickstart
Install the SDK and make your first request:
npm install @helpingbrains/catalogops
import { CatalogOps } from "@helpingbrains/catalogops";
const client = new CatalogOps({ apiKey: process.env.HB_API_KEY });
const result = await client.ping();Authentication
Authenticate with an API key from your HelpingBrains dashboard. Pass it via theAuthorizationheader as a Bearer token.
Core Concepts
- Completeness checks. A first-class capability in CatalogOps.
- Missing attributes. A first-class capability in CatalogOps.
- Quality score. A first-class capability in CatalogOps.
- Validation rules. A first-class capability in CatalogOps.
- SEO health. A first-class capability in CatalogOps.
API Reference
The CatalogOps REST API is organized around predictable, resource-oriented URLs and returns JSON responses. Full endpoint reference coming soon.
