Python SDK for AgentStamp — trust verification, identity stamps, and reputation scoring for AI agents.
Project description
AgentStamp Python SDK
Trust verification and reputation scoring for AI agents.
Install
pip install agentstamp
Quick Start
from agentstamp import trust_check, verify, get_reputation
# Check if a wallet is trusted
result = trust_check("0x1234...")
print(result["trusted"]) # True/False
print(result["score"]) # 0-100
# Verify a stamp certificate
cert = verify("stmp_QLNhL-Y1CvlyWxnG")
print(cert["valid"])
# Get reputation breakdown
rep = get_reputation("agt_E-PFtTAIQlfVleNm")
print(rep["score"], rep["tier_label"])
Client Usage
from agentstamp import AgentStampClient
client = AgentStampClient()
# Search agents
agents = client.search_agents(query="trading", category="data")
# Browse the registry
all_agents = client.browse_agents(limit=20)
# Get leaderboard
leaders = client.leaderboard()
# Get agent passport
passport = client.get_passport("0x1234...")
Links
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
agentstamp-1.3.0.tar.gz
(3.4 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file agentstamp-1.3.0.tar.gz.
File metadata
- Download URL: agentstamp-1.3.0.tar.gz
- Upload date:
- Size: 3.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5dcaacb3659cd0521989d1449ab40e93b0a7fac7dd73a46b903c0412f68ea8b3
|
|
| MD5 |
058d600a61e2b80dc6636d79e346f29d
|
|
| BLAKE2b-256 |
aecf0e60869122736bb25f62f69b665593fe0e437f26abf2739d6d210022f990
|
File details
Details for the file agentstamp-1.3.0-py3-none-any.whl.
File metadata
- Download URL: agentstamp-1.3.0-py3-none-any.whl
- Upload date:
- Size: 3.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21d9e04f64dc60e49c60cc5a90f2a20c9051dbad8c3eaed68bf3ae892b39bf8d
|
|
| MD5 |
fb8ad76dbb585926408c49f53009fb09
|
|
| BLAKE2b-256 |
cf7c755cad15dd9a08028dce0985da6180aa99bab4d5fee5da35dfabda410642
|