API
Common Sense Systems API
A machine-readable interface for public business discovery, service lookup, Insights, inquiries, and checkout handoffs.
What this page is for
This is the human entry point for the Common Sense Systems API: a public, structured way to read business facts, browse services, inspect Insights, and start inquiry or checkout handoffs.
Agents should start with OpenAPI for the exact contract, then use the public read endpoints for discovery. The checkout endpoint creates a Stripe-hosted payment URL; a human still completes payment at Stripe.
The site also publishes llms.txt for compact orientation, but OpenAPI is the authoritative API surface.
Quick start
The health endpoint is the fastest way to confirm the API is reachable.
curl https://api.common-sense.com/v1/health
{
"status": "healthy",
"timestamp": "2026-06-03T15:00:00Z",
"version": "1.0.0"
} Browse the surface
Grouped by the kinds of questions the API answers.
Discovery
Start here if you want to know whether the service is alive and what it can do.
- GET
/v1/capabilitiesGet Capabilities
- GET
/v1/healthCheck Health
- POST
/v1/services/{serviceId}/checkoutCreate Service Checkout
Services
Structured service catalog data and the self-serve checkout handoff.
- GET
/v1/servicesList Services
- GET
/v1/services/categoriesList Service Categories
- GET
/v1/services/{serviceId}Get Service Detail
- GET
/v1/services/{serviceId}/faqGet Service Faq
- GET
/v1/services/{serviceId}/testimonialsGet Service Testimonials
Insights
Content discovery and search for the public knowledge base.
- GET
/v1/insightsList Insights
- GET
/v1/insights/searchSearch Insights
- GET
/v1/insights/{insightId}Get Insight Detail
- GET
/v1/knowledge/toc-principlesGet Toc Principles
Business and inquiries
Public company facts and inquiry capture for real conversations.
- GET
/v1/businessGet Business Profile
- GET
/v1/business/credentialsGet Business Credentials
- POST
/v1/inquiriesSubmit Inquiry
For humans
Use the spec first, then inspect the response shape.
The page is deliberately plain: it should help a person orient quickly while keeping the generated OpenAPI document as the source of truth. Public reads expose business facts, services, and Insights; checkout initiation returns a hosted Stripe URL for a human buyer to complete.
Need help integrating the API?
Start with the OpenAPI spec. If you need a conversation about fit, integration scope, checkout handoff, or the data model, use the contact page.