Product Docs
Parametrig Product Documentation
Start with the live Auk surface, then grow into additional product APIs only when they are ready to be treated as real public contracts.
curl https://api.parametrig.com/v1/quotes \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json" \
-d '{"product":"auk","context":{"partner":"demo"}}'
import requests
response = requests.post(
"https://api.parametrig.com/v1/quotes",
headers={"Authorization": "Bearer "},
json={"product": "auk", "context": {"partner": "demo"}},
)
const response = await fetch("https://api.parametrig.com/v1/quotes", {
method: "POST",
headers: {
Authorization: "Bearer ",
"Content-Type": "application/json",
},
body: JSON.stringify({ product: "auk", context: { partner: "demo" } }),
});
Start Here
Parametrig Docs
Parametrig builds insurance infrastructure for the programmable economy.
This docs surface is intentionally static-first and contract-first:
- content lives in markdown
- search is generated at build time
- discovery artifacts are generated at build time
- public docs are curated intentionally instead of mirrored automatically from private internal material
What You Can Do Here
- start from the live Auk surface
- understand how the website, docs, console, and canonical backend relate
- review public trust and contact routes
- track only the product and platform material that is ready to be treated as public contract
Quickstart
The public docs start with the Auk surface and the canonical backend contract. This example shows the expected request posture without pretending that every internal surface is already public here.
curl https://api.parametrig.com/v1/quotes \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json" \
-d '{"product":"auk","context":{"partner":"demo"}}'
import requests
response = requests.post(
"https://api.parametrig.com/v1/quotes",
headers={"Authorization": "Bearer <token>"},
json={"product": "auk", "context": {"partner": "demo"}},
)
const response = await fetch("https://api.parametrig.com/v1/quotes", {
method: "POST",
headers: {
Authorization: "Bearer <token>",
"Content-Type": "application/json",
},
body: JSON.stringify({ product: "auk", context: { partner: "demo" } }),
});
Current Public Shape
parametrig.comexplains the company and product posturedocs.parametrig.comholds the curated public contract surfaceapi.parametrig.comis the canonical backend entrypointconsole.parametrig.comis a client over the same backend, not a separate source of truth
Product Family Posture
The public product family starts with Auk.
Additional family names exist internally, but they only appear in public docs when they are ready to be treated as real external contracts with durable behavior, trust posture, and support expectations.
Publishing Model
- public product and API overviews
- integration guidance
- platform/runtime boundary explanations that are safe to publish
- trust and contact routes for public docs readers
- discovery-friendly raw markdown and sitemap artifacts
What Does Not Belong Here
- internal roadmap sequencing
- private legal drafting
- internal review findings
- unpublished strategy or architecture deliberation
Projects
Published product surfaces
Resources
Start from the public contract boundary
Getting Started
Understand how the public website, docs, console, and canonical backend fit together.
API Overview
See how the public API contract is positioned and why programmatic access stays canonical.
Runtime Boundaries
Understand the relationship between the website, docs, console, and canonical backend.
Trust And Contact
Find the current public operator posture and the split contact routes for legal and trust matters.