Part of Better Data's open operational infrastructure. Use standalone or with Commerce Chain Optimization.

See Commerce Chain Optimization →
tagd.sh

Schema

Verification Record

Response shape and record semantics for Signal Tags verification endpoints.

1 min read · Schema

Edit this page

Verification response shape

A compliant endpoint should return a typed response with:

  • status: verification outcome
  • tag: full Signal Tag record
  • verifiedAt: timestamp of response generation
  • endpoint: endpoint URL/source identifier

Example

{
  "status": "authentic",
  "verifiedAt": "2026-03-12T18:22:00Z",
  "endpoint": "https://verify.betterdata.co",
  "tag": {
    "id": "st_example_001",
    "status": "verified",
    "productId": "prod_example_001",
    "organizationId": "org_example",
    "createdAt": "2026-02-25T10:00:00.000Z",
    "metadata": {
      "gtin": "00312547691215"
    }
  }
}