Contoprix
Developers

From content schema to a working frontend — without building the CMS glue yourself.

REST and GraphQL APIs, a live Graph Playground, and a typed SDK for React and Next.js are shipped today, not on a roadmap.

What You Get

A full developer platform, not a raw endpoint

Everything below is real and shipping — nothing in this section is a roadmap claim.

REST API
Documented HTTP endpoints for every content and platform operation.
GraphQL API
Query exactly the shape you need, with full schema introspection.
Graph Playground
Explore your live schema and run real queries against your own content.
Typed SDK
@contoprix/client, @contoprix/react, and @contoprix/next — installable today.
CLI
@contoprix/cli for local developer tooling and workflows.
Webhooks
React to publish, update, and workflow events in your own systems.
React Next.js .NET REST GraphQL Webhooks
Quickstart

Install, configure, fetch, render

The full walkthrough lives in the documentation — this is the shape of it.

1. Install

npm install @contoprix/client @contoprix/types
npm install @contoprix/react @contoprix/next

2. Configure

import { ContoprixClient } from "@contoprix/client"

export const contoprix = new ContoprixClient({
  baseUrl: process.env.NEXT_PUBLIC_CONTOPRIX_URL!,
})

3. Fetch & render

const { entries } = await contoprix.entries.list({
  type: "landing-page",
  locale: "en-US",
})

export default function Page() {
  return <Hero entry={entries[0]} />
}

Get Building

Start free and make your first API call today.