← Back to registry/

Hilt Pay Agent Gateway

A2A conformantA2A v0.3.0

Hilt Pay Agent Gateway

v1.1.0Hilt

Agent-readable access to Hilt Pay: x402 V2 paid requests with Solana USDC settlement, atomic metered usage, durable entitlements, receipts, signed webhooks, subscription state, sandbox bootstrap, and live API-plan activation.

Launch agent website ↗

Skills

  • Discover Hilt Pay

    Return canonical products, pricing, interfaces, and buying paths.

    paymentsx402solanausdccatalog
  • Bootstrap Hilt Sandbox

    Create a free sandbox setup intent and scoped sandbox key.

    sandboxbootstrapapi-key
  • Activate Hilt Pay API

    Discover Starter, Growth, and Scale x402 V2 activation tools paid in Solana USDC with automatic entitlement and key delivery.

    paymentsentitlementsreceiptsapi
  • Build a metered Hilt endpoint

    Implement consume, HTTP 402 PAYMENT-REQUIRED, paid retry settlement, atomic consumption, and serve using the Hilt Pay API V2 contract.

    x402 V2metered usagePAYMENT-SIGNATURESolana USDC

Integration

import asyncio
from a2a_registry import AsyncRegistry

async def main():
    async with AsyncRegistry() as registry:
        agent = await registry.get_by_id("d8231845-aa28-408e-97c9-b7926f35a8ab")
        client = await agent.async_connect()
        print(f"Connected to {agent.name}")

asyncio.run(main())