Back to Tools

Stripe

Payments

Complete Stripe payments integration. Charges, subscriptions, customers, invoices, and payouts.

Available Actions
chargescustomerssubscriptionsinvoicespayouts
Input Schema
{
  "type": "object",
  "required": [
    "resource",
    "action"
  ],
  "properties": {
    "data": {
      "type": "object"
    },
    "action": {
      "type": "string"
    },
    "resource": {
      "type": "string"
    }
  }
}
Output Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "data": {
      "type": "object"
    },
    "object": {
      "type": "string"
    }
  }
}
Quick Start

API Endpoint

POST /api/execute/stripe

cURL Example

curl -X POST \
  https://api.nulayers.com/execute/stripe \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"action": "charges"}'
Integration

Get your API key from the dashboard to start using this tool in your AI applications.