{
  "provider": {
    "name": "Zen7 Video Generation",
    "description": "AI视频生成服务",
    "wallet": "0xb8d6f2441e8f8dfB6288A74Cf73804cDd0484E0C",
    "solana_wallet": "CNbgcwV95JCguguA652kxwXPhS6EwoskeBPH45o8ow7K",
    "chains": [
      "base",
      "base_sepolia",
      "polygon",
      "tempo_moderato",
      "solana",
      "solana_devnet",
      "bnb",
      "bnb_testnet"
    ]
  },
  "services": [
    {
      "id": "ping",
      "name": "Ping Test",
      "description": "Simple test service to verify x402 payment flow",
      "price": 0.01,
      "currency": "USDC",
      "acceptedCurrencies": [
        "USDC"
      ],
      "input": {
        "message": {
          "type": "string",
          "required": false,
          "description": "Optional message to echo back"
        }
      },
      "output": {
        "pong": {
          "type": "string",
          "description": "Echo response"
        }
      },
      "available": true
    },
    {
      "id": "text-to-video",
      "name": "Text to Video",
      "description": "文字生成视频，输入文字描述即可生成高质量AI视频",
      "price": 0.99,
      "currency": "USDC",
      "acceptedCurrencies": [
        "USDC"
      ],
      "input": {
        "prompt": {
          "type": "string",
          "required": true,
          "description": "视频内容的文字描述"
        },
        "aspect_ratio": {
          "type": "string",
          "required": false,
          "description": "宽高比: 16:9 (横版) 或 9:16 (竖版)，默认 16:9",
          "enum": [
            "16:9",
            "9:16"
          ],
          "default": "16:9"
        }
      },
      "output": {
        "video_url": {
          "type": "string",
          "description": "生成的视频URL"
        }
      },
      "available": true
    },
    {
      "id": "image-to-video",
      "name": "Image to Video",
      "description": "图片动画化，让静态图片动起来",
      "price": 1.49,
      "currency": "USDC",
      "acceptedCurrencies": [
        "USDC"
      ],
      "input": {
        "prompt": {
          "type": "string",
          "required": true,
          "description": "动画效果的文字描述"
        },
        "image_url": {
          "type": "string",
          "required": true,
          "description": "要动画化的图片URL"
        },
        "aspect_ratio": {
          "type": "string",
          "required": false,
          "description": "宽高比: 16:9 (横版) 或 9:16 (竖版)，默认 16:9",
          "enum": [
            "16:9",
            "9:16"
          ],
          "default": "16:9"
        }
      },
      "output": {
        "video_url": {
          "type": "string",
          "description": "生成的视频URL"
        }
      },
      "available": true
    }
  ],
  "x402": {
    "version": 2,
    "network": "eip155:8453",
    "schemes": [
      "exact"
    ],
    "facilitators": {
      "primary": "cdp",
      "fallback": [
        "tempo",
        "bnb",
        "solana"
      ],
      "strategy": "failover"
    },
    "mainnet": true
  }
}