Start free behavior evidence capture and basic verification.
Free Evidence Intake is the first user-side step for exporting user-facing AI behavior as traceable, readable, and verifiable evidence records. It is designed for behavior capture and basic verification first, with a clearly marked TAL upgrade path toward Layer 2 Responsibility Attribution when closure, authority, and responsibility must be assessed.
Generate a free intake key, then prove the first evidence loop
Start here when your first need is behavior evidence capture and basic verification. The free intake path gives you a short bootstrap window to create a project, receive a key, write one evidence event, read it back, and verify that the record is usable before you request continuation or Layer 2 responsibility attribution.
Generate 48-hour free intake access automatically
Generate a trial project and free intake key immediately. This creates the minimum identity surface for the first behavior evidence write/read/verify loop. Intake keys are project-bound: the project_id used in your write must match the project bound to the supplied key.
Open the Integration Manual
Use the Manual when you are ready to map fields, normalize a payload, generate evidence_hash, submit records, retrieve them back, and close the first working verification loop.
Open the ManualRead the Integration Protocol
Use the Protocol when you need the role, scope, boundary, minimum evidence record, integrity rule, and the product separation from CLARIXO Core Runtime API.
Open the ProtocolWhat Free Evidence Intake gives you
/?action=evidence-events. This batch does not change the underlying Evidence API handler, verification path, schema, or L2/L3 handoff semantics.project_id and application_id in the evidence payload so the exported records can be grouped, retrieved, and reviewed consistently later.Continue after free intake proof
The 48-hour free intake window is designed for first behavior evidence write/read/verify validation. Existing evidence records remain readable and verifiable after intake expiry, but continued write access, formal review, or responsibility attribution requires a continuation or upgrade path.
POST /?action=evidence-events writes may be rejected until continuation is approved.verification_url links.project_id, application name, use case, expected volume, and the path you need next.Prove one valid evidence loop before you productionize access control
Confirm the free intake boundary
Free Intake covers behavior evidence capture and basic verification. It does not claim Layer 2 Responsibility Attribution or L2→L3 handoff readiness by itself.
Send one real evidence event
Use the generated key to export one real user-facing behavior, submit it to /?action=evidence-events, query it back, and confirm that the record is readable and operationally useful.
POST /?action=evidence-events with JSON body.project_id, application_id, event_id, session_id, and recorded_at so the record can be traced and queried back properly.curl -sS 'https://clarixo.fun/?action=evidence-events' \
-H 'Content-Type: application/json' \
--data '{
"project_id":"your_free_intake_project_id",
"application_id":"your_app:behavior_export",
"event_id":"evt_free_intake_example_001",
"session_id":"sess_free_intake_example",
"recorded_at":"2026-05-01T00:00:00Z",
"input_summary":"User asked for a behavior that should remain traceable.",
"output_summary":"System produced a user-facing outcome that was captured as a basic evidence record.",
"final_status":"delivered"
}'