Community proof
The first outside SDK integration is public.
A community builder shipped a minimal autonomous agent integration that imports @pyrimid/sdk, searches the live Pyrimid catalog, and previews affiliate splits before recommending paid products.
money-agent-pyrimid-integration
The repo uses PyrimidResolver for product discovery and calculateSplit for commission math. That is the exact behavior Pyrimid needs from affiliate agents: find a paid product, understand economics, then route demand.
import { PyrimidResolver, calculateSplit } from "@pyrimid/sdk";
const resolver = new PyrimidResolver({
affiliateId: "money-agent-0x0f059c4d",
catalogUrl: "https://pyrimid.ai/api/v1/catalog",
preferVerifiedVendors: true,
});
const products = await resolver.findProducts("btc trading signal", 5);
const split = calculateSplit(products[0].price_usdc, products[0].affiliate_bps);Next vendor gets the proof slot.
Four vendors are already onchain. Vendor #5 gets featured across the proof page, community page, and agent-readable catalog as the next live integration.
- Proof-page placement with BaseScan links.
- Catalog listing with price, endpoint, and affiliate bps.
- SDK integration pattern other builders can copy.
- Distribution from MYA, AgentZone, and Pyrimid surfaces.
What to copy
Affiliate agents
Use the resolver to find products and carry your affiliate ID into purchases.
Vendors
List one endpoint, set affiliate bps, and give agents a financial reason to distribute it.
Curators
Wrap the catalog into a vertical recommender and earn when buyer agents use it.