Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
type PaymentRequirement = { asset: string; pay_to: string; network: "base" | "base-sepolia" | "eip155:8453" | "eip155:84532"; amount: string; description?: string; };
asset
string
0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913
pay_to
network
"base"
"base-sepolia"
"eip155:8453"
"eip155:84532"
amount
"10000"
description
type PaymentInstruction = { id: string; version: number; payment_requirements: PaymentRequirement[]; name: string; description?: string; created_at: string; };
id
version
number
payment_requirements
PaymentRequirement[]
name
created_at
type CreatePaymentInstructionRequest = { name: string; payment_requirements: PaymentRequirement[]; description?: string; };
type UpdatePaymentInstructionRequest = { name?: string; payment_requirements?: PaymentRequirement[]; description?: string; };
type PaymentInstructionListQuery = { limit?: number; pageToken?: string; cid?: string; name?: string; id?: string; };
limit
pageToken
cid
type PaymentInstructionListResponse = { data: { payment_instructions: PaymentInstruction[]; next_page_token?: string; }; };
type PaymentInstructionResponse = { data: PaymentInstruction; };
type PaymentInstructionDeleteResponse = { data: {}; };
type CidListQuery = { limit?: number; pageToken?: string; };
type CidListResponse = { data: { cids: string[]; next_page_token?: string; }; };
type CidAssociation = { payment_instruction_id: string; cid: string; created_at: string; };
payment_instruction_id
type CidAssociationResponse = { data: CidAssociation; };
type CidRemoveResponse = { data: {}; };