Kobaru
  1. API Reference
Kobaru
  • Kobaru.io Gateway API
    • Introduction
      • What is Kobaru?
      • Quick start
      • How x402 works
    • Integration
      • Standard x402 SDK
      • Advanced SDK
      • Transparent proxy integration
      • Direct API integration
    • Core Concepts
      • Available Chains and Assets
      • Payment schemes
      • Security
      • Usage models
    • Guides
      • Pricing your API
      • Going to Production
      • Testing with devnet
      • Bazaar discovery
    • API Reference
      • Error Handling
      • Get Supported Payment Kinds
        GET
      • Verify Payment Authorization
        POST
      • Settle Payment
        POST
    • Discovery
      • List Discovery Resources
    • Schemas
      • SupportedResponse
      • ErrorResponse
      • UnauthorizedResponse
      • RateLimitResponse
      • VerifySuccessResponse
      • VerifyErrorResponse
      • SettleSuccessResponse
      • SettleErrorResponse
      • DiscoveryResourceItem
      • ListDiscoveryResourcesResponse
  1. API Reference

Get Supported Payment Kinds

GET
/supported
Returns supported payment kinds for the authenticated merchant per x402 v2 specification.

Request

Query Params

Responses

🟢200
application/json
Supported capabilities retrieved successfully
Body

🟠400
🟠401
🟠429
🔴500
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://gateway.kobaru.io/supported?service&path'
Response Response Example
200 - Example 1
{
    "kinds": [
        {
            "x402Version": 0,
            "scheme": "string",
            "network": "string",
            "extra": {
                "property1": null,
                "property2": null
            }
        }
    ],
    "extensions": [
        {
            "usageModel": {
                "model": "string",
                "limit": 0,
                "unit": "string"
            },
            "property1": null,
            "property2": null
        }
    ],
    "signers": {
        "property1": "string",
        "property2": "string"
    }
}
Modified at 2026-01-27 20:44:21
Previous
Error Handling
Next
Verify Payment Authorization
Built with