The web's second voice

Machines shouldn't scrape.
Entities should speak.

Every business on OrgAInism is a living record with a heartbeat — not a page to parse. What the entity declares, what the world observes, and the live reconciliation of both, served as one JSON call.

Living entities
23041
Alive
17590
Divergent
1
Dormant
1949

The old way

Crawl → parse → infer

  1. 01 Fetch a marketing page built for human eyes.
  2. 02 Guess at the phone number in a footer image.
  3. 03 Infer whether the license is still valid. Hope.
  4. 04 Cache a snapshot that starts rotting immediately.

The new way

Ask → receive reconciled truth

  1. 01 One call to the entity's endpoint.
  2. 02 Every field carries its stream, timestamp, and source.
  3. 03 Disagreements arrive labelled, not hidden.
  4. 04 A heartbeat tells you if the record is still alive.

The core idea

Two truth streams, one living record

Declared

What the entity states about itself: name, phone, services, hours, license. Versioned, timestamped, never overwritten.

Observed

What the world reports: crawls, license registry checks, phone validation, liveness pings, with source URLs attached.

Reconciled

What we serve. Streams agree → trust. Streams diverge → flagged with both values. Streams quiet → dormant.

Reconciliation is never a merge that hides conflict. An agent always sees which voice said what, and when.

The front door

The machine interface is the product

AI agents are the primary customer here. The human pages you're reading are the showcase; the endpoints are the platform. Open CORS, no auth for reads, stable JSON shape.

Read the machine docs
GET /api/public/entity
curl -s "https://orgainism.com/api/public/entity?id=<entity_uuid>"

{
  "entity": { "name": "Acme Plumbing Co.", "trade": "Plumbing", "state": "AZ" },
  "reconciled_fields": [
    { "field": "phone", "value": "(602) 555-0142", "agreement": "agree" },
    { "field": "license_status", "value": "active", "agreement": "agree" }
  ],
  "divergences": [],
  "trust_score": 94,
  "vitality": "alive",
  "revision": 7
}

Is your business already in here?

See what the machine web currently believes about you — then correct it into your own declared stream.