{
  "generated_at": "2026-04-24T15:01:35.625676+00:00",
  "slug": "1xyxamiu-nx-link-payments-web-pay",
  "title": "Snack Money \u00b7 Pay by Domain",
  "url": "https://1xyxamiu.nx.link/payments/web/pay",
  "category": "finance",
  "summary": "Execute USDC payments to recipients identified by domain name or URL rather than wallet address.",
  "seo": {
    "title": "Domain-Based Payment API - x402 Web Payments",
    "description": "Send USDC payments to any web domain via Snack Money. Pay $0.01 USDC per transaction. No wallet addresses required, pay by URL."
  },
  "use_cases": [
    "Tip content creators by website domain",
    "Pay invoices linked to company URLs",
    "Build donation systems without address collection"
  ],
  "ideal_buyer": "Payment integrators and content monetization platforms enabling domain-based micropayments.",
  "example_prompt": "Send 2 USDC to snack.money for their web service.",
  "example_request_body": {
    "amount": 2,
    "currency": "USDC",
    "receiver": "snack.money",
    "description": "Payment for web service"
  },
  "risk_notes": [],
  "pricing_sanity": {
    "flag": "normal",
    "ratio": 0.333,
    "median_category_atomic": 30000
  },
  "pricing_review_required": false,
  "pricing_decimal_suspect": false,
  "trust_tier": "indexed_external",
  "accepts": [
    {
      "scheme": "exact",
      "network": "base",
      "pay_to": "0xd4ab20dbd8af75f39bf6cb601fc08bab7d4db198",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "max_amount_required_atomic": "10000",
      "max_timeout_seconds": 300,
      "mime_type": "application/json",
      "description": "Snack Money API https://api.snack.money - POST Pay to user via domain name/url",
      "verified": false,
      "hints": {
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "required": [
                    "code",
                    "msg",
                    "data"
                  ],
                  "properties": {
                    "msg": {
                      "type": "string"
                    },
                    "code": {
                      "enum": [
                        200
                      ],
                      "type": "number"
                    },
                    "data": {
                      "type": "object",
                      "required": [
                        "txn_id",
                        "amount",
                        "receipt"
                      ],
                      "properties": {
                        "amount": {
                          "type": "number",
                          "example": 1
                        },
                        "txn_id": {
                          "type": "number",
                          "example": 1751194593304
                        },
                        "receipt": {
                          "type": "string",
                          "format": "uri",
                          "example": "https://snack.money/transaction/1751194593304"
                        }
                      }
                    }
                  }
                }
              }
            },
            "description": "Success"
          },
          "400": {
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "required": [
                    "code"
                  ],
                  "properties": {
                    "msg": {
                      "type": "string",
                      "default": "Validation failed"
                    },
                    "code": {
                      "enum": [
                        400
                      ],
                      "type": "number"
                    },
                    "error": {
                      "nullable": true
                    }
                  }
                }
              }
            },
            "description": "Validation Error"
          },
          "402": {
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "required": [
                    "code",
                    "accepts"
                  ],
                  "properties": {
                    "msg": {
                      "type": "string",
                      "default": "X-PAYMENT header is required"
                    },
                    "code": {
                      "enum": [
                        402
                      ],
                      "type": "number"
                    },
                    "accepts": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "required": [
                          "maxAmountRequired",
                          "extra"
                        ],
                        "properties": {
                          "asset": {
                            "type": "string",
                            "default": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
                          },
                          "extra": {
                            "type": "object",
                            "properties": {
                              "name": {
                                "type": "string",
                                "default": "USDC"
                              },
                              "version": {
                                "type": "string",
                                "default": "2"
                              }
                            }
                          },
                          "payTo": {
                            "type": "string",
                            "default": "0x1223d566f05Ea54E5854434C4552c9f5C2259e0f"
                          },
                          "scheme": {
                            "type": "string",
                            "default": "exact"
                          },
                          "network": {
                            "type": "string",
                            "default": "base"
                          },
                          "mimeType": {
                            "type": "string"
                          },
                          "resource": {
                            "type": "string",
                            "default": "https://snack.money"
                          },
                          "description": {
                            "type": "string"
                          },
                          "maxAmountRequired": {
                            "type": "string",
                            "example": "1030000"
                          },
                          "maxTimeoutSeconds": {
                            "type": "number",
                            "default": 60
                          }
                        }
                      }
                    },
                    "x402Version": {
                      "type": "number",
                      "default": 1
                    }
                  }
                }
              }
            },
            "description": "Payment Required"
          },
          "500": {
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "required": [
                    "code"
                  ],
                  "properties": {
                    "msg": {
                      "type": "string",
                      "default": "Internal server error"
                    },
                    "code": {
                      "enum": [
                        500
                      ],
                      "type": "number"
                    },
                    "error": {
                      "example": "Something went wrong",
                      "nullable": true
                    }
                  }
                }
              }
            },
            "description": "Server Error"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "amount",
                  "receiver"
                ],
                "properties": {
                  "meta": {
                    "type": "object",
                    "properties": {
                      "snack_name": {
                        "type": "string",
                        "nullable": true
                      },
                      "snack_emoji": {
                        "type": "string",
                        "nullable": true
                      },
                      "snack_amount": {
                        "type": "number",
                        "nullable": true
                      },
                      "source_wallet": {
                        "type": "string",
                        "nullable": true
                      },
                      "snack_quantity": {
                        "type": "number",
                        "nullable": true
                      }
                    }
                  },
                  "amount": {
                    "type": "number",
                    "example": 1,
                    "maximum": 10,
                    "minimum": 0.01
                  },
                  "currency": {
                    "enum": [
                      "USDC"
                    ],
                    "type": "string",
                    "default": "USDC",
                    "example": "USDC"
                  },
                  "receiver": {
                    "type": "string",
                    "example": "snackmoney",
                    "minLength": 1
                  },
                  "description": {
                    "type": "string",
                    "example": "Description about the payment",
                    "nullable": true
                  },
                  "transaction_hash": {
                    "type": "string",
                    "example": "Transaction Hash",
                    "nullable": true
                  }
                }
              },
              "example": {
                "amount": 1,
                "currency": "USDC",
                "receiver": "snack.money",
                "description": "Payment to web domain"
              }
            }
          }
        }
      }
    }
  ],
  "duplicate_cluster_id": "finance-cl-8c9bcdd79c03",
  "origin": {
    "slug": "1xyxamiu-nx-link",
    "host": "1xyxamiu.nx.link",
    "title": "1xyxamiu.nx.link",
    "description": "An x402-payable API endpoint hosted on the nx.link infrastructure. No additional service details are available from the origin.",
    "url": "https://1xyxamiu.nx.link"
  },
  "json_ld": {
    "@id": "https://x402all.com/resource/1xyxamiu-nx-link-payments-web-pay",
    "url": "https://x402all.com/resource/1xyxamiu-nx-link-payments-web-pay",
    "name": "Snack Money \u00b7 Pay by Domain",
    "@type": "WebAPI",
    "offers": {
      "url": "https://x402all.com/resource/1xyxamiu-nx-link-payments-web-pay",
      "@type": "Offer",
      "price": "0.01",
      "availability": "https://schema.org/InStock",
      "priceCurrency": "USDC",
      "priceSpecification": {
        "@type": "UnitPriceSpecification",
        "price": "0.010000",
        "unitText": "call",
        "priceCurrency": "USDC"
      },
      "eligibleCustomerType": "Agent",
      "additionalProperty": [
        {
          "@type": "PropertyValue",
          "name": "paymentNetwork",
          "value": "base"
        },
        {
          "@type": "PropertyValue",
          "name": "paymentAsset",
          "value": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
        }
      ]
    },
    "sameAs": "https://1xyxamiu.nx.link/payments/web/pay",
    "@context": "https://schema.org",
    "provider": {
      "@id": "https://x402all.com/server/1xyxamiu-nx-link",
      "url": "https://1xyxamiu.nx.link",
      "name": "1xyxamiu.nx.link",
      "@type": "Organization"
    },
    "identifier": "1xyxamiu-nx-link-payments-web-pay",
    "description": "Send USDC payments to any web domain via Snack Money. Pay $0.01 USDC per transaction. No wallet addresses required, pay by URL.",
    "potentialAction": {
      "@type": "BuyAction",
      "target": "https://axon402.com/test-buy?resource=1xyxamiu-nx-link-payments-web-pay",
      "description": "Test-buy this endpoint on AXON"
    },
    "applicationCategory": "finance"
  },
  "axon_deep_link": "https://axon402.com/test-buy?resource=1xyxamiu-nx-link-payments-web-pay"
}
