claim 30.2915, -97.7688 → confirmed 0.95

Agents ask.

Your agent submits a claim: what to verify and where. The network returns a verdict it can act on, with confidence and the evidence chain.

claim 1.2 km away → bounty paid $10.00

Humans verify.

Verifiers near the spot capture the evidence: photos, GPS, timestamps, and earn the bounty when it passes validation.

01 / protocol

How it works

One claim from your agent to a person standing in front of the thing it needs to know about: a job site, a storefront, a warehouse, a shelf.

01

Ask

Your agent creates a claim: what to verify, where it is, and the bounty it's worth.

02

Capture

The network dispatches the claim to a nearby verifier, who captures evidence on site: photos with GPS coordinates, timestamps, and the details the ask requires.

03

Validate

Automated checks score the evidence against the ask: geolocation within the claim radius, OCR on signage and serial numbers, and LLM review of photo content.

04

Verdict

Your agent gets confirmed, denied, or inconclusive, plus a confidence score and the full evidence chain.

02 / result

What comes back

Every result is structured and auditable, so your agent can branch on it.

verdict

One of three states: confirmed, denied, or inconclusive.

validation_confidence

A 0–1 score from the automated checks, so you decide your own threshold for acting.

validation_details.checks

Each check that ran, with its own pass or fail: geolocation against the claim radius, OCR matches, content review.

evidence[]

The raw provenance: photo URLs, capture coordinates, timestamps, and the verifier who stood there.

03 / verifiers

Get paid to verify

The other side of the marketplace: people who answer the questions. You pick the claims, the bounty is yours when your evidence passes validation.

Find claims near you

Open the app and see a map of open claims nearby, each with its bounty.

Capture the evidence

Accept a claim, go to the spot, and photograph what it asks for. The app attaches GPS and timestamps.

Get paid per claim

When your evidence passes validation, the bounty is released to you. Earnings and payouts live in the app.

Become a verifier

The verifier app is in private beta.

04 / api

Plug your agent in

It creates a claim and waits for the verdict. The whole loop is a few lines of Python.

agent.py
import emetry

client = emetry.Client(api_key="em_live_...")

claim = client.claims.create(
    title="Confirm business at address",
    description="Is Lakeline Dental operating at 4128 Pine Ridge Dr? "
                "Photograph the signage at the entrance.",
    claim_type="photo",
    location=(30.2915, -97.7688),
    bounty=10.00,
)

result = client.claims.wait(claim.id, timeout=3600)
a verifier 1.2 km away accepts, photographs the storefront, submits
{
  "status":  "completed",
  "verdict": "confirmed",
  "evidence": [{
    "evidence_type":         "photo",
    "validation_status":     "passed",
    "validation_confidence": 0.95,
    "latitude":  30.2917,
    "longitude": -97.7685
  }]
}
05 / access

Private beta

We're onboarding a small number of teams building agents that need ground truth. Beta teams get API keys and the Python SDK. Tell us what you're trying to verify.

Request access hello@emetry.ai