Skip to content
@proofmetercom

Proof Meter

Signed usage receipts for AI systems. Ed25519 signatures, SHA-256 hash chains, Merkle-rooted settlements. Patent Pending.

Proof Meter

Proof Meter

Signed usage receipts for AI systems.

Website · Docs · Explorer · API Reference


ProofMeter signs what an AI system used — tokens, API calls, compute — then lets authorized parties apply the correct cost view. Every usage event gets an Ed25519-signed, hash-chained receipt that anyone can verify without trusting us.

How it works

Agent calls API → ProofMeter signs receipt → Chain it → Settle into Merkle root → Anyone verifies

Install

# TypeScript
npm install proofmeter

# Python
pip install proofmeter

Record your first receipt

import { ProofMeter } from 'proofmeter';

const meter = new ProofMeter({ apiKey: 'pm_live_...' });

const receipt = await meter.spend({
  actor_id: 'my-agent',
  provider_id: 'anthropic',
  usage_unit: 'tokens',
  usage_quantity: 2500,
  cost_cents: 8,
});
// → { receipt_id: "rct_...", signature: "...", status: "verified" }

Verify any receipt (public, no auth)

curl https://api.proofmeter.com/v1/receipts/rct_abc123/verify

Repositories

Repo Description
proofmeter Core infrastructure — API, dashboard, landing, docs
sdk TypeScript SDK (npm install proofmeter)

Links

Patent Pending.

Popular repositories Loading

  1. sdk sdk Public

    TypeScript SDK for Proof Meter — signed usage receipts for AI systems. npm install proofmeter

    TypeScript

  2. .github .github Public

    Proof Meter organization profile

Repositories

Showing 2 of 2 repositories

People

This organization has no public members. You must be a member to see who’s a part of this organization.

Top languages

Loading…

Most used topics

Loading…