{
  "generated_at": "2026-04-24T15:01:35.625676+00:00",
  "slug": "1xyxamiu-nx-link-payments-email-batch-pay",
  "title": "Snack Money \u00b7 Batch Pay Users via Email",
  "url": "https://1xyxamiu.nx.link/payments/email/batch-pay",
  "category": "finance",
  "summary": "Executes batch USDC payments to recipients identified by email addresses rather than wallet addresses.",
  "seo": {
    "title": "Batch Email Payment API | x402 USDC Micropayments",
    "description": "Send USDC payments to multiple recipients via email address. $0.01 per call. Base network. No wallet addresses required."
  },
  "use_cases": [
    "Distribute rewards to users without known wallet addresses",
    "Send tips or payments to email contacts",
    "Process bulk payouts for creator platforms"
  ],
  "ideal_buyer": "Payment platforms and creator economy agents needing email-based disbursement.",
  "example_prompt": "Send $1.50 USDC to tips@snack.money and $0.75 to user@example.com",
  "example_request_body": {
    "currency": "USDC",
    "receivers": [
      {
        "amount": 1,
        "receiver": "tips@snack.money"
      },
      {
        "amount": 0.5,
        "receiver": "user@example.com"
      }
    ],
    "description": "Batch payment via email"
  },
  "risk_notes": [
    "May process personal / identity data."
  ],
  "pricing_sanity": {
    "flag": "normal",
    "ratio": 1,
    "median_category_atomic": 10000
  },
  "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 Batch pay to users via email",
      "verified": false,
      "hints": {
        "responses": {
          "200": {
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "required": [
                    "code",
                    "data"
                  ],
                  "properties": {
                    "msg": {
                      "type": "string",
                      "default": "Payment sent successfully to users"
                    },
                    "code": {
                      "enum": [
                        200
                      ],
                      "type": "number"
                    },
                    "data": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "required": [
                          "txn_id",
                          "username",
                          "receipt"
                        ],
                        "properties": {
                          "txn_id": {
                            "type": "number",
                            "example": 1751194593304
                          },
                          "receipt": {
                            "type": "string",
                            "format": "uri",
                            "example": "https://snack.money/transaction/1751194593304"
                          },
                          "username": {
                            "type": "string",
                            "example": "snackmoney"
                          }
                        }
                      }
                    }
                  }
                }
              }
            },
            "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": [
                  "receivers"
                ],
                "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
                      }
                    }
                  },
                  "currency": {
                    "enum": [
                      "USDC"
                    ],
                    "type": "string",
                    "default": "USDC",
                    "example": "USDC"
                  },
                  "receivers": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "required": [
                        "receiver",
                        "amount"
                      ],
                      "properties": {
                        "amount": {
                          "type": "number",
                          "example": 0.5,
                          "maximum": 10,
                          "minimum": 0.01
                        },
                        "receiver": {
                          "type": "string",
                          "example": "snackmoney",
                          "minLength": 1
                        }
                      }
                    },
                    "minItems": 1
                  },
                  "description": {
                    "type": "string",
                    "example": "A description about the payment",
                    "nullable": true
                  }
                }
              },
              "example": {
                "currency": "USDC",
                "receivers": [
                  {
                    "amount": 1,
                    "receiver": "tips@snack.money"
                  },
                  {
                    "amount": 0.5,
                    "receiver": "user@example.com"
                  }
                ],
                "description": "Batch payment via email"
              }
            }
          }
        }
      }
    }
  ],
  "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-email-batch-pay",
    "url": "https://x402all.com/resource/1xyxamiu-nx-link-payments-email-batch-pay",
    "name": "Snack Money \u00b7 Batch Pay Users via Email",
    "@type": "WebAPI",
    "offers": {
      "url": "https://x402all.com/resource/1xyxamiu-nx-link-payments-email-batch-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/email/batch-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-email-batch-pay",
    "description": "Send USDC payments to multiple recipients via email address. $0.01 per call. Base network. No wallet addresses required.",
    "potentialAction": {
      "@type": "BuyAction",
      "target": "https://axon402.com/test-buy?resource=1xyxamiu-nx-link-payments-email-batch-pay",
      "description": "Test-buy this endpoint on AXON"
    },
    "applicationCategory": "finance"
  },
  "axon_deep_link": "https://axon402.com/test-buy?resource=1xyxamiu-nx-link-payments-email-batch-pay"
}
