{
  "openapi": "3.1.0",
  "info": {
    "title": "t2000 MPP Gateway",
    "version": "1.0.0",
    "description": "40 MPP-enabled API services (88 endpoints) payable with Sui USDC. No API keys. No accounts. Just pay per request.",
    "x-guidance": "All endpoints accept POST requests with JSON bodies. Payment is handled via MPP (Machine Payments Protocol) using Sui USDC. On first request, the gateway returns a 402 with a WWW-Authenticate header containing payment instructions. Pay the requested amount in USDC on Sui, then retry with the payment receipt. Use the @t2000/sdk or mppx SDK to handle the 402 challenge automatically. Recipient address: 0x76d70cf9d3ab7f714a35adf8766a2cb25929cae92ab4de54ff4dea0482b05012 See /llms.txt for natural-language usage examples. See /api/services for the full service catalog as JSON."
  },
  "x-discovery": {
    "ownershipProofs": []
  },
  "paths": {
    "/openai/v1/chat/completions": {
      "post": {
        "operationId": "openai-v1-chat-completions",
        "summary": "Chat completions (GPT-4o, o1, etc.)",
        "tags": [
          "ai",
          "media"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "model": {
                    "type": "string",
                    "description": "Model name (e.g. gpt-4o, llama-3.3-70b)"
                  },
                  "messages": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "role": {
                          "type": "string",
                          "description": "Message role",
                          "enum": [
                            "system",
                            "user",
                            "assistant"
                          ]
                        },
                        "content": {
                          "type": "string",
                          "description": "Message content"
                        }
                      },
                      "required": [
                        "role",
                        "content"
                      ]
                    },
                    "description": "Conversation messages"
                  },
                  "temperature": {
                    "type": "number",
                    "description": "Sampling temperature (0-2)"
                  },
                  "max_tokens": {
                    "type": "number",
                    "description": "Maximum tokens to generate"
                  },
                  "stream": {
                    "type": "boolean",
                    "description": "Stream response tokens"
                  }
                },
                "required": [
                  "messages"
                ]
              }
            }
          }
        }
      }
    },
    "/openai/v1/embeddings": {
      "post": {
        "operationId": "openai-v1-embeddings",
        "summary": "Create embeddings",
        "tags": [
          "ai",
          "media"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "model": {
                    "type": "string",
                    "description": "Embedding model name"
                  },
                  "input": {
                    "type": "string",
                    "description": "Text to embed (or array of strings)"
                  }
                },
                "required": [
                  "input"
                ]
              }
            }
          }
        }
      }
    },
    "/openai/v1/images/generations": {
      "post": {
        "operationId": "openai-v1-images-generations",
        "summary": "Generate images with gpt-image-1",
        "tags": [
          "ai",
          "media"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.050000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "model": {
                    "type": "string",
                    "description": "Model (gpt-image-1, gpt-image-1-mini). Omit to let OpenAI select default. Responses are uploaded to Blob and returned as dall-e-shaped `{ url }` entries."
                  },
                  "prompt": {
                    "type": "string",
                    "description": "Image description"
                  },
                  "size": {
                    "type": "string",
                    "description": "Image size (1024x1024, 1024x1792, 1792x1024)"
                  },
                  "n": {
                    "type": "number",
                    "description": "Number of images"
                  }
                },
                "required": [
                  "prompt"
                ]
              }
            }
          }
        }
      }
    },
    "/openai/v1/audio/transcriptions": {
      "post": {
        "operationId": "openai-v1-audio-transcriptions",
        "summary": "Transcribe audio with Whisper",
        "tags": [
          "ai",
          "media"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "file": {
                    "type": "string",
                    "description": "Audio file URL or base64"
                  },
                  "model": {
                    "type": "string",
                    "description": "Model (whisper-1)"
                  },
                  "language": {
                    "type": "string",
                    "description": "ISO-639-1 language code"
                  }
                },
                "required": [
                  "file"
                ]
              }
            }
          }
        }
      }
    },
    "/openai/v1/audio/speech": {
      "post": {
        "operationId": "openai-v1-audio-speech",
        "summary": "Text-to-speech",
        "tags": [
          "ai",
          "media"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.020000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "model": {
                    "type": "string",
                    "description": "TTS model (tts-1, tts-1-hd)"
                  },
                  "input": {
                    "type": "string",
                    "description": "Text to convert to speech"
                  },
                  "voice": {
                    "type": "string",
                    "description": "Voice (alloy, echo, fable, onyx, nova, shimmer)"
                  }
                },
                "required": [
                  "input",
                  "voice"
                ]
              }
            }
          }
        }
      }
    },
    "/anthropic/v1/messages": {
      "post": {
        "operationId": "anthropic-v1-messages",
        "summary": "Chat completions (Sonnet, Opus, Haiku)",
        "tags": [
          "ai"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "model": {
                    "type": "string",
                    "description": "Model (claude-sonnet-4-20250514, claude-opus-4-20250514, claude-3.5-haiku)"
                  },
                  "messages": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "role": {
                          "type": "string",
                          "description": "Role",
                          "enum": [
                            "user",
                            "assistant"
                          ]
                        },
                        "content": {
                          "type": "string",
                          "description": "Message content"
                        }
                      },
                      "required": [
                        "role",
                        "content"
                      ]
                    },
                    "description": "Conversation messages"
                  },
                  "max_tokens": {
                    "type": "number",
                    "description": "Maximum tokens to generate"
                  },
                  "system": {
                    "type": "string",
                    "description": "System prompt"
                  }
                },
                "required": [
                  "model",
                  "messages",
                  "max_tokens"
                ]
              }
            }
          }
        }
      }
    },
    "/fal/fal-ai/flux/dev": {
      "post": {
        "operationId": "fal-fal-ai-flux-dev",
        "summary": "Flux Dev image generation",
        "tags": [
          "ai",
          "media"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.030000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "prompt": {
                    "type": "string",
                    "description": "Text description of the image to generate"
                  },
                  "image_size": {
                    "type": "string",
                    "description": "Output size (e.g. landscape_4_3, square_hd)"
                  },
                  "num_images": {
                    "type": "number",
                    "description": "Number of images to generate"
                  }
                },
                "required": [
                  "prompt"
                ]
              }
            }
          }
        }
      }
    },
    "/fal/fal-ai/flux-pro": {
      "post": {
        "operationId": "fal-fal-ai-flux-pro",
        "summary": "Flux Pro image generation",
        "tags": [
          "ai",
          "media"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.050000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "prompt": {
                    "type": "string",
                    "description": "Text description of the image to generate"
                  },
                  "image_size": {
                    "type": "string",
                    "description": "Output size (e.g. landscape_4_3, square_hd)"
                  },
                  "num_images": {
                    "type": "number",
                    "description": "Number of images to generate"
                  }
                },
                "required": [
                  "prompt"
                ]
              }
            }
          }
        }
      }
    },
    "/fal/fal-ai/flux-realism": {
      "post": {
        "operationId": "fal-fal-ai-flux-realism",
        "summary": "Flux Realism (photorealistic)",
        "tags": [
          "ai",
          "media"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.030000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "prompt": {
                    "type": "string",
                    "description": "Text description of the image to generate"
                  },
                  "image_size": {
                    "type": "string",
                    "description": "Output size (e.g. landscape_4_3, square_hd)"
                  },
                  "num_images": {
                    "type": "number",
                    "description": "Number of images to generate"
                  }
                },
                "required": [
                  "prompt"
                ]
              }
            }
          }
        }
      }
    },
    "/fal/fal-ai/recraft-20b": {
      "post": {
        "operationId": "fal-fal-ai-recraft-20b",
        "summary": "Recraft 20B image generation",
        "tags": [
          "ai",
          "media"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.030000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "prompt": {
                    "type": "string",
                    "description": "Text description of the image to generate"
                  },
                  "image_size": {
                    "type": "string",
                    "description": "Output size (e.g. landscape_4_3, square_hd)"
                  },
                  "num_images": {
                    "type": "number",
                    "description": "Number of images to generate"
                  }
                },
                "required": [
                  "prompt"
                ]
              }
            }
          }
        }
      }
    },
    "/fal/fal-ai/whisper": {
      "post": {
        "operationId": "fal-fal-ai-whisper",
        "summary": "Speech-to-text transcription",
        "tags": [
          "ai",
          "media"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "audio_url": {
                    "type": "string",
                    "description": "URL of the audio file to transcribe"
                  }
                },
                "required": [
                  "audio_url"
                ]
              }
            }
          }
        }
      }
    },
    "/firecrawl/v1/scrape": {
      "post": {
        "operationId": "firecrawl-v1-scrape",
        "summary": "Scrape a URL to structured data",
        "tags": [
          "web",
          "data"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "url": {
                    "type": "string",
                    "description": "URL to process"
                  }
                },
                "required": [
                  "url"
                ]
              }
            }
          }
        }
      }
    },
    "/firecrawl/v1/crawl": {
      "post": {
        "operationId": "firecrawl-v1-crawl",
        "summary": "Crawl a website",
        "tags": [
          "web",
          "data"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.050000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "url": {
                    "type": "string",
                    "description": "URL to process"
                  }
                },
                "required": [
                  "url"
                ]
              }
            }
          }
        }
      }
    },
    "/firecrawl/v1/map": {
      "post": {
        "operationId": "firecrawl-v1-map",
        "summary": "Discover URLs on a site",
        "tags": [
          "web",
          "data"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "url": {
                    "type": "string",
                    "description": "URL to process"
                  }
                },
                "required": [
                  "url"
                ]
              }
            }
          }
        }
      }
    },
    "/firecrawl/v1/extract": {
      "post": {
        "operationId": "firecrawl-v1-extract",
        "summary": "Extract structured data with LLM",
        "tags": [
          "web",
          "data"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.020000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "url": {
                    "type": "string",
                    "description": "URL to extract from"
                  },
                  "schema": {
                    "type": "object",
                    "properties": {}
                  }
                },
                "required": [
                  "url"
                ]
              }
            }
          }
        }
      }
    },
    "/gemini/v1beta/models/gemini-2.5-flash": {
      "post": {
        "operationId": "gemini-v1beta-models-gemini-2-5-flash",
        "summary": "Gemini 2.5 Flash (fast, multimodal)",
        "tags": [
          "ai"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "contents": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "role": {
                          "type": "string",
                          "description": "Role (user or model)"
                        },
                        "parts": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "text": {
                                "type": "string",
                                "description": "Text content"
                              }
                            },
                            "required": [
                              "text"
                            ]
                          },
                          "description": "Content parts"
                        }
                      },
                      "required": [
                        "parts"
                      ]
                    },
                    "description": "Conversation contents"
                  }
                },
                "required": [
                  "contents"
                ]
              }
            }
          }
        }
      }
    },
    "/gemini/v1beta/models/gemini-2.5-pro": {
      "post": {
        "operationId": "gemini-v1beta-models-gemini-2-5-pro",
        "summary": "Gemini 2.5 Pro (reasoning)",
        "tags": [
          "ai"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.020000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "contents": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "role": {
                          "type": "string",
                          "description": "Role (user or model)"
                        },
                        "parts": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "text": {
                                "type": "string",
                                "description": "Text content"
                              }
                            },
                            "required": [
                              "text"
                            ]
                          },
                          "description": "Content parts"
                        }
                      },
                      "required": [
                        "parts"
                      ]
                    },
                    "description": "Conversation contents"
                  }
                },
                "required": [
                  "contents"
                ]
              }
            }
          }
        }
      }
    },
    "/gemini/v1beta/models/embedding-001": {
      "post": {
        "operationId": "gemini-v1beta-models-embedding-001",
        "summary": "Text embeddings",
        "tags": [
          "ai"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "content": {
                    "type": "object",
                    "properties": {
                      "parts": {
                        "type": "array",
                        "items": {
                          "type": "object",
                          "properties": {
                            "text": {
                              "type": "string",
                              "description": "Text to embed"
                            }
                          },
                          "required": [
                            "text"
                          ]
                        },
                        "description": "Parts"
                      }
                    },
                    "required": [
                      "parts"
                    ]
                  }
                },
                "required": [
                  "content"
                ]
              }
            }
          }
        }
      }
    },
    "/groq/v1/chat/completions": {
      "post": {
        "operationId": "groq-v1-chat-completions",
        "summary": "Chat completions (Llama 3, Mixtral, Gemma)",
        "tags": [
          "ai"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "model": {
                    "type": "string",
                    "description": "Model name (e.g. gpt-4o, llama-3.3-70b)"
                  },
                  "messages": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "role": {
                          "type": "string",
                          "description": "Message role",
                          "enum": [
                            "system",
                            "user",
                            "assistant"
                          ]
                        },
                        "content": {
                          "type": "string",
                          "description": "Message content"
                        }
                      },
                      "required": [
                        "role",
                        "content"
                      ]
                    },
                    "description": "Conversation messages"
                  },
                  "temperature": {
                    "type": "number",
                    "description": "Sampling temperature (0-2)"
                  },
                  "max_tokens": {
                    "type": "number",
                    "description": "Maximum tokens to generate"
                  },
                  "stream": {
                    "type": "boolean",
                    "description": "Stream response tokens"
                  }
                },
                "required": [
                  "messages"
                ]
              }
            }
          }
        }
      }
    },
    "/groq/v1/audio/transcriptions": {
      "post": {
        "operationId": "groq-v1-audio-transcriptions",
        "summary": "Audio transcription (Whisper)",
        "tags": [
          "ai"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "file": {
                    "type": "string",
                    "description": "Audio file URL or base64"
                  },
                  "model": {
                    "type": "string",
                    "description": "Model (whisper-large-v3)"
                  },
                  "language": {
                    "type": "string",
                    "description": "ISO-639-1 language code"
                  }
                },
                "required": [
                  "file"
                ]
              }
            }
          }
        }
      }
    },
    "/perplexity/v1/chat/completions": {
      "post": {
        "operationId": "perplexity-v1-chat-completions",
        "summary": "Sonar search (web-grounded answers)",
        "tags": [
          "ai",
          "search"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "model": {
                    "type": "string",
                    "description": "Model name (e.g. gpt-4o, llama-3.3-70b)"
                  },
                  "messages": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "role": {
                          "type": "string",
                          "description": "Message role",
                          "enum": [
                            "system",
                            "user",
                            "assistant"
                          ]
                        },
                        "content": {
                          "type": "string",
                          "description": "Message content"
                        }
                      },
                      "required": [
                        "role",
                        "content"
                      ]
                    },
                    "description": "Conversation messages"
                  },
                  "temperature": {
                    "type": "number",
                    "description": "Sampling temperature (0-2)"
                  },
                  "max_tokens": {
                    "type": "number",
                    "description": "Maximum tokens to generate"
                  },
                  "stream": {
                    "type": "boolean",
                    "description": "Stream response tokens"
                  }
                },
                "required": [
                  "messages"
                ]
              }
            }
          }
        }
      }
    },
    "/brave/v1/web/search": {
      "post": {
        "operationId": "brave-v1-web-search",
        "summary": "Web search results",
        "tags": [
          "search"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "q": {
                    "type": "string",
                    "description": "Search query"
                  }
                },
                "required": [
                  "q"
                ]
              }
            }
          }
        }
      }
    },
    "/brave/v1/images/search": {
      "post": {
        "operationId": "brave-v1-images-search",
        "summary": "Image search",
        "tags": [
          "search"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "q": {
                    "type": "string",
                    "description": "Search query"
                  }
                },
                "required": [
                  "q"
                ]
              }
            }
          }
        }
      }
    },
    "/brave/v1/news/search": {
      "post": {
        "operationId": "brave-v1-news-search",
        "summary": "News search",
        "tags": [
          "search"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "q": {
                    "type": "string",
                    "description": "Search query"
                  }
                },
                "required": [
                  "q"
                ]
              }
            }
          }
        }
      }
    },
    "/brave/v1/videos/search": {
      "post": {
        "operationId": "brave-v1-videos-search",
        "summary": "Video search",
        "tags": [
          "search"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "q": {
                    "type": "string",
                    "description": "Search query"
                  }
                },
                "required": [
                  "q"
                ]
              }
            }
          }
        }
      }
    },
    "/brave/v1/summarizer/search": {
      "post": {
        "operationId": "brave-v1-summarizer-search",
        "summary": "AI-summarized search",
        "tags": [
          "search"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "q": {
                    "type": "string",
                    "description": "Search query"
                  }
                },
                "required": [
                  "q"
                ]
              }
            }
          }
        }
      }
    },
    "/deepseek/v1/chat/completions": {
      "post": {
        "operationId": "deepseek-v1-chat-completions",
        "summary": "Chat completions (DeepSeek-V3, R1 reasoning)",
        "tags": [
          "ai"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "model": {
                    "type": "string",
                    "description": "Model name (e.g. gpt-4o, llama-3.3-70b)"
                  },
                  "messages": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "role": {
                          "type": "string",
                          "description": "Message role",
                          "enum": [
                            "system",
                            "user",
                            "assistant"
                          ]
                        },
                        "content": {
                          "type": "string",
                          "description": "Message content"
                        }
                      },
                      "required": [
                        "role",
                        "content"
                      ]
                    },
                    "description": "Conversation messages"
                  },
                  "temperature": {
                    "type": "number",
                    "description": "Sampling temperature (0-2)"
                  },
                  "max_tokens": {
                    "type": "number",
                    "description": "Maximum tokens to generate"
                  },
                  "stream": {
                    "type": "boolean",
                    "description": "Stream response tokens"
                  }
                },
                "required": [
                  "messages"
                ]
              }
            }
          }
        }
      }
    },
    "/resend/v1/emails": {
      "post": {
        "operationId": "resend-v1-emails",
        "summary": "Send an email",
        "tags": [
          "communication"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "from": {
                    "type": "string",
                    "description": "Sender email address"
                  },
                  "to": {
                    "type": "string",
                    "description": "Recipient email (or array)"
                  },
                  "subject": {
                    "type": "string",
                    "description": "Email subject"
                  },
                  "html": {
                    "type": "string",
                    "description": "HTML body"
                  },
                  "text": {
                    "type": "string",
                    "description": "Plain text body"
                  }
                },
                "required": [
                  "from",
                  "to",
                  "subject"
                ]
              }
            }
          }
        }
      }
    },
    "/resend/v1/emails/batch": {
      "post": {
        "operationId": "resend-v1-emails-batch",
        "summary": "Send batch emails (up to 100)",
        "tags": [
          "communication"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "from": {
                      "type": "string",
                      "description": "Sender email"
                    },
                    "to": {
                      "type": "string",
                      "description": "Recipient email"
                    },
                    "subject": {
                      "type": "string",
                      "description": "Email subject"
                    },
                    "html": {
                      "type": "string",
                      "description": "HTML body"
                    }
                  },
                  "required": [
                    "from",
                    "to",
                    "subject"
                  ]
                },
                "description": "Array of emails (up to 100)"
              }
            }
          }
        }
      }
    },
    "/together/v1/chat/completions": {
      "post": {
        "operationId": "together-v1-chat-completions",
        "summary": "Chat completions (Llama 4, Qwen, Mixtral)",
        "tags": [
          "ai",
          "media"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "model": {
                    "type": "string",
                    "description": "Model name (e.g. gpt-4o, llama-3.3-70b)"
                  },
                  "messages": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "role": {
                          "type": "string",
                          "description": "Message role",
                          "enum": [
                            "system",
                            "user",
                            "assistant"
                          ]
                        },
                        "content": {
                          "type": "string",
                          "description": "Message content"
                        }
                      },
                      "required": [
                        "role",
                        "content"
                      ]
                    },
                    "description": "Conversation messages"
                  },
                  "temperature": {
                    "type": "number",
                    "description": "Sampling temperature (0-2)"
                  },
                  "max_tokens": {
                    "type": "number",
                    "description": "Maximum tokens to generate"
                  },
                  "stream": {
                    "type": "boolean",
                    "description": "Stream response tokens"
                  }
                },
                "required": [
                  "messages"
                ]
              }
            }
          }
        }
      }
    },
    "/together/v1/images/generations": {
      "post": {
        "operationId": "together-v1-images-generations",
        "summary": "Image generation (FLUX, Stable Diffusion)",
        "tags": [
          "ai",
          "media"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.030000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "prompt": {
                    "type": "string",
                    "description": "Text description of the image to generate"
                  },
                  "image_size": {
                    "type": "string",
                    "description": "Output size (e.g. landscape_4_3, square_hd)"
                  },
                  "num_images": {
                    "type": "number",
                    "description": "Number of images to generate"
                  }
                },
                "required": [
                  "prompt"
                ]
              }
            }
          }
        }
      }
    },
    "/together/v1/embeddings": {
      "post": {
        "operationId": "together-v1-embeddings",
        "summary": "Text embeddings",
        "tags": [
          "ai",
          "media"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "model": {
                    "type": "string",
                    "description": "Embedding model name"
                  },
                  "input": {
                    "type": "string",
                    "description": "Text to embed (or array of strings)"
                  }
                },
                "required": [
                  "input"
                ]
              }
            }
          }
        }
      }
    },
    "/elevenlabs/v1/text-to-speech/:voiceId": {
      "post": {
        "operationId": "elevenlabs-v1-text-to-speech-voiceId",
        "summary": "Text-to-speech (any voice)",
        "tags": [
          "ai",
          "media"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.050000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "text": {
                    "type": "string",
                    "description": "Text to convert to speech"
                  },
                  "model_id": {
                    "type": "string",
                    "description": "Model (eleven_multilingual_v2, eleven_turbo_v2)"
                  },
                  "voice_settings": {
                    "type": "object",
                    "properties": {
                      "stability": {
                        "type": "number",
                        "description": "Voice stability (0-1)"
                      },
                      "similarity_boost": {
                        "type": "number",
                        "description": "Similarity boost (0-1)"
                      }
                    }
                  }
                },
                "required": [
                  "text"
                ]
              }
            }
          }
        }
      }
    },
    "/elevenlabs/v1/sound-generation": {
      "post": {
        "operationId": "elevenlabs-v1-sound-generation",
        "summary": "AI sound effects generation",
        "tags": [
          "ai",
          "media"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.050000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "text": {
                    "type": "string",
                    "description": "Description of the sound to generate"
                  },
                  "duration_seconds": {
                    "type": "number",
                    "description": "Duration in seconds"
                  }
                },
                "required": [
                  "text"
                ]
              }
            }
          }
        }
      }
    },
    "/openweather/v1/weather": {
      "post": {
        "operationId": "openweather-v1-weather",
        "summary": "Current weather by city or coordinates",
        "tags": [
          "data"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "city": {
                    "type": "string",
                    "description": "City name (e.g. \"London\" or \"London,UK\")"
                  },
                  "lat": {
                    "type": "string",
                    "description": "Latitude (alternative to city)"
                  },
                  "lon": {
                    "type": "string",
                    "description": "Longitude (alternative to city)"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/openweather/v1/forecast": {
      "post": {
        "operationId": "openweather-v1-forecast",
        "summary": "5-day / 3-hour forecast",
        "tags": [
          "data"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "city": {
                    "type": "string",
                    "description": "City name"
                  },
                  "lat": {
                    "type": "string",
                    "description": "Latitude"
                  },
                  "lon": {
                    "type": "string",
                    "description": "Longitude"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/googlemaps/v1/geocode": {
      "post": {
        "operationId": "googlemaps-v1-geocode",
        "summary": "Address to coordinates (and reverse)",
        "tags": [
          "data"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "address": {
                    "type": "string",
                    "description": "Address to geocode (or use latlng for reverse)"
                  },
                  "latlng": {
                    "type": "string",
                    "description": "Latitude,longitude for reverse geocoding"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/googlemaps/v1/places": {
      "post": {
        "operationId": "googlemaps-v1-places",
        "summary": "Text-based places search",
        "tags": [
          "data"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "query": {
                    "type": "string",
                    "description": "Text search query (e.g. \"restaurants in Sydney\")"
                  }
                },
                "required": [
                  "query"
                ]
              }
            }
          }
        }
      }
    },
    "/googlemaps/v1/directions": {
      "post": {
        "operationId": "googlemaps-v1-directions",
        "summary": "Route directions between locations",
        "tags": [
          "data"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "origin": {
                    "type": "string",
                    "description": "Starting point (address or lat,lng)"
                  },
                  "destination": {
                    "type": "string",
                    "description": "Ending point (address or lat,lng)"
                  },
                  "mode": {
                    "type": "string",
                    "description": "Travel mode (driving, walking, bicycling, transit)"
                  }
                },
                "required": [
                  "origin",
                  "destination"
                ]
              }
            }
          }
        }
      }
    },
    "/judge0/v1/submissions": {
      "post": {
        "operationId": "judge0-v1-submissions",
        "summary": "Submit and execute code",
        "tags": [
          "compute"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "source_code": {
                    "type": "string",
                    "description": "Source code to execute"
                  },
                  "language_id": {
                    "type": "number",
                    "description": "Language ID (see /v1/languages)"
                  },
                  "stdin": {
                    "type": "string",
                    "description": "Standard input"
                  }
                },
                "required": [
                  "source_code",
                  "language_id"
                ]
              }
            }
          }
        }
      }
    },
    "/judge0/v1/languages": {
      "post": {
        "operationId": "judge0-v1-languages",
        "summary": "List supported languages",
        "tags": [
          "compute"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {}
              }
            }
          }
        }
      }
    },
    "/lob/v1/postcards": {
      "post": {
        "operationId": "lob-v1-postcards",
        "summary": "Send a physical postcard",
        "tags": [
          "commerce"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "1.000000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "to": {
                    "type": "object",
                    "properties": {
                      "name": {
                        "type": "string",
                        "description": "Recipient name"
                      },
                      "address_line1": {
                        "type": "string",
                        "description": "Street address"
                      },
                      "address_city": {
                        "type": "string",
                        "description": "City"
                      },
                      "address_state": {
                        "type": "string",
                        "description": "State (2-letter)"
                      },
                      "address_zip": {
                        "type": "string",
                        "description": "ZIP code"
                      }
                    },
                    "required": [
                      "name",
                      "address_line1",
                      "address_city",
                      "address_state",
                      "address_zip"
                    ]
                  },
                  "front": {
                    "type": "string",
                    "description": "Front HTML or template ID"
                  },
                  "back": {
                    "type": "string",
                    "description": "Back HTML or template ID"
                  }
                },
                "required": [
                  "to",
                  "front",
                  "back"
                ]
              }
            }
          }
        }
      }
    },
    "/lob/v1/letters": {
      "post": {
        "operationId": "lob-v1-letters",
        "summary": "Send a physical letter",
        "tags": [
          "commerce"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "1.500000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "to": {
                    "type": "object",
                    "properties": {
                      "name": {
                        "type": "string",
                        "description": "Recipient name"
                      },
                      "address_line1": {
                        "type": "string",
                        "description": "Street address"
                      },
                      "address_city": {
                        "type": "string",
                        "description": "City"
                      },
                      "address_state": {
                        "type": "string",
                        "description": "State"
                      },
                      "address_zip": {
                        "type": "string",
                        "description": "ZIP"
                      }
                    },
                    "required": [
                      "name",
                      "address_line1",
                      "address_city",
                      "address_state",
                      "address_zip"
                    ]
                  },
                  "from": {
                    "type": "object",
                    "properties": {
                      "name": {
                        "type": "string",
                        "description": "Sender name"
                      },
                      "address_line1": {
                        "type": "string",
                        "description": "Street address"
                      },
                      "address_city": {
                        "type": "string",
                        "description": "City"
                      },
                      "address_state": {
                        "type": "string",
                        "description": "State"
                      },
                      "address_zip": {
                        "type": "string",
                        "description": "ZIP"
                      }
                    },
                    "required": [
                      "name",
                      "address_line1",
                      "address_city",
                      "address_state",
                      "address_zip"
                    ]
                  },
                  "file": {
                    "type": "string",
                    "description": "Letter content HTML or template ID"
                  }
                },
                "required": [
                  "to",
                  "from",
                  "file"
                ]
              }
            }
          }
        }
      }
    },
    "/lob/v1/verify": {
      "post": {
        "operationId": "lob-v1-verify",
        "summary": "Verify a US address",
        "tags": [
          "commerce"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "primary_line": {
                    "type": "string",
                    "description": "Street address"
                  },
                  "city": {
                    "type": "string",
                    "description": "City"
                  },
                  "state": {
                    "type": "string",
                    "description": "State"
                  },
                  "zip_code": {
                    "type": "string",
                    "description": "ZIP code"
                  }
                },
                "required": [
                  "primary_line"
                ]
              }
            }
          }
        }
      }
    },
    "/coingecko/v1/price": {
      "post": {
        "operationId": "coingecko-v1-price",
        "summary": "Get price for coins (by ID, vs currencies)",
        "tags": [
          "data"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "ids": {
                    "type": "string",
                    "description": "Comma-separated coin IDs (e.g. \"bitcoin,ethereum\")"
                  },
                  "vs_currencies": {
                    "type": "string",
                    "description": "Comma-separated currencies (e.g. \"usd,eur\")"
                  }
                },
                "required": [
                  "ids",
                  "vs_currencies"
                ]
              }
            }
          }
        }
      }
    },
    "/coingecko/v1/markets": {
      "post": {
        "operationId": "coingecko-v1-markets",
        "summary": "Market data — price, cap, volume, sparkline",
        "tags": [
          "data"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "vs_currency": {
                    "type": "string",
                    "description": "Target currency (e.g. \"usd\")"
                  },
                  "order": {
                    "type": "string",
                    "description": "Sort order (market_cap_desc, volume_desc)"
                  },
                  "per_page": {
                    "type": "string",
                    "description": "Results per page (1-250)"
                  }
                },
                "required": [
                  "vs_currency"
                ]
              }
            }
          }
        }
      }
    },
    "/coingecko/v1/trending": {
      "post": {
        "operationId": "coingecko-v1-trending",
        "summary": "Trending coins and searches",
        "tags": [
          "data"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {}
              }
            }
          }
        }
      }
    },
    "/alphavantage/v1/quote": {
      "post": {
        "operationId": "alphavantage-v1-quote",
        "summary": "Real-time stock quote (price, change, volume)",
        "tags": [
          "data"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "symbol": {
                    "type": "string",
                    "description": "Stock ticker symbol (e.g. \"AAPL\")"
                  }
                },
                "required": [
                  "symbol"
                ]
              }
            }
          }
        }
      }
    },
    "/alphavantage/v1/daily": {
      "post": {
        "operationId": "alphavantage-v1-daily",
        "summary": "Daily time series (OHLCV)",
        "tags": [
          "data"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "symbol": {
                    "type": "string",
                    "description": "Stock ticker symbol"
                  },
                  "outputsize": {
                    "type": "string",
                    "description": "compact (100 days) or full"
                  }
                },
                "required": [
                  "symbol"
                ]
              }
            }
          }
        }
      }
    },
    "/alphavantage/v1/search": {
      "post": {
        "operationId": "alphavantage-v1-search",
        "summary": "Search for stock symbols by keyword",
        "tags": [
          "data"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "keywords": {
                    "type": "string",
                    "description": "Search keywords for symbol lookup"
                  }
                },
                "required": [
                  "keywords"
                ]
              }
            }
          }
        }
      }
    },
    "/newsapi/v1/headlines": {
      "post": {
        "operationId": "newsapi-v1-headlines",
        "summary": "Top headlines by country, category, or source",
        "tags": [
          "data",
          "search"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "country": {
                    "type": "string",
                    "description": "2-letter country code (e.g. \"us\")"
                  },
                  "category": {
                    "type": "string",
                    "description": "Category (business, technology, science, etc.)"
                  },
                  "q": {
                    "type": "string",
                    "description": "Search keywords"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/newsapi/v1/search": {
      "post": {
        "operationId": "newsapi-v1-search",
        "summary": "Search articles by keyword, date range, language",
        "tags": [
          "data",
          "search"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "q": {
                    "type": "string",
                    "description": "Search keywords"
                  },
                  "from": {
                    "type": "string",
                    "description": "Start date (YYYY-MM-DD)"
                  },
                  "to": {
                    "type": "string",
                    "description": "End date (YYYY-MM-DD)"
                  },
                  "language": {
                    "type": "string",
                    "description": "2-letter language code"
                  },
                  "sortBy": {
                    "type": "string",
                    "description": "Sort (relevancy, popularity, publishedAt)"
                  }
                },
                "required": [
                  "q"
                ]
              }
            }
          }
        }
      }
    },
    "/deepl/v1/translate": {
      "post": {
        "operationId": "deepl-v1-translate",
        "summary": "Translate text with context-aware AI",
        "tags": [
          "translation"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "text": {
                    "type": "array",
                    "items": {
                      "type": "string",
                      "description": "Text to translate"
                    },
                    "description": "Array of texts"
                  },
                  "target_lang": {
                    "type": "string",
                    "description": "Target language code (e.g. \"DE\", \"FR\", \"ES\")"
                  },
                  "source_lang": {
                    "type": "string",
                    "description": "Source language code (auto-detected if omitted)"
                  }
                },
                "required": [
                  "text",
                  "target_lang"
                ]
              }
            }
          }
        }
      }
    },
    "/exa/v1/search": {
      "post": {
        "operationId": "exa-v1-search",
        "summary": "Semantic search with optional content extraction",
        "tags": [
          "search",
          "ai"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "query": {
                    "type": "string",
                    "description": "Semantic search query"
                  },
                  "numResults": {
                    "type": "number",
                    "description": "Number of results (default 10)"
                  },
                  "contents": {
                    "type": "object",
                    "properties": {
                      "text": {
                        "type": "boolean",
                        "description": "Include extracted text"
                      }
                    }
                  }
                },
                "required": [
                  "query"
                ]
              }
            }
          }
        }
      }
    },
    "/exa/v1/contents": {
      "post": {
        "operationId": "exa-v1-contents",
        "summary": "Extract clean content from URLs",
        "tags": [
          "search",
          "ai"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "ids": {
                    "type": "array",
                    "items": {
                      "type": "string",
                      "description": "Document ID"
                    },
                    "description": "Array of Exa document IDs"
                  }
                },
                "required": [
                  "ids"
                ]
              }
            }
          }
        }
      }
    },
    "/jina/v1/read": {
      "post": {
        "operationId": "jina-v1-read",
        "summary": "Read a URL and return clean markdown",
        "tags": [
          "web",
          "data"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "url": {
                    "type": "string",
                    "description": "URL to process"
                  }
                },
                "required": [
                  "url"
                ]
              }
            }
          }
        }
      }
    },
    "/serper/v1/search": {
      "post": {
        "operationId": "serper-v1-search",
        "summary": "Google web search with rich snippets",
        "tags": [
          "search"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "q": {
                    "type": "string",
                    "description": "Google search query"
                  },
                  "gl": {
                    "type": "string",
                    "description": "Country code (e.g. \"us\")"
                  },
                  "hl": {
                    "type": "string",
                    "description": "Language code"
                  },
                  "num": {
                    "type": "number",
                    "description": "Number of results"
                  }
                },
                "required": [
                  "q"
                ]
              }
            }
          }
        }
      }
    },
    "/serper/v1/images": {
      "post": {
        "operationId": "serper-v1-images",
        "summary": "Google image search results",
        "tags": [
          "search"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "q": {
                    "type": "string",
                    "description": "Image search query"
                  },
                  "gl": {
                    "type": "string",
                    "description": "Country code"
                  },
                  "num": {
                    "type": "number",
                    "description": "Number of results"
                  }
                },
                "required": [
                  "q"
                ]
              }
            }
          }
        }
      }
    },
    "/screenshot/v1/capture": {
      "post": {
        "operationId": "screenshot-v1-capture",
        "summary": "Screenshot a URL (configurable viewport, format)",
        "tags": [
          "web"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "url": {
                    "type": "string",
                    "description": "URL to capture"
                  },
                  "viewport_width": {
                    "type": "string",
                    "description": "Viewport width in pixels"
                  },
                  "viewport_height": {
                    "type": "string",
                    "description": "Viewport height in pixels"
                  },
                  "format": {
                    "type": "string",
                    "description": "Output format (png, jpeg, pdf)"
                  }
                },
                "required": [
                  "url"
                ]
              }
            }
          }
        }
      }
    },
    "/pdfshift/v1/convert": {
      "post": {
        "operationId": "pdfshift-v1-convert",
        "summary": "Convert HTML source or URL to PDF",
        "tags": [
          "web",
          "data"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "source": {
                    "type": "string",
                    "description": "HTML string or URL to convert to PDF"
                  },
                  "landscape": {
                    "type": "boolean",
                    "description": "Landscape orientation"
                  },
                  "margin": {
                    "type": "string",
                    "description": "Page margin (e.g. \"20px\")"
                  }
                },
                "required": [
                  "source"
                ]
              }
            }
          }
        }
      }
    },
    "/qrcode/v1/generate": {
      "post": {
        "operationId": "qrcode-v1-generate",
        "summary": "Generate a QR code image (PNG, SVG)",
        "tags": [
          "data"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "data": {
                    "type": "string",
                    "description": "Content to encode in QR code"
                  },
                  "size": {
                    "type": "string",
                    "description": "Image size (e.g. \"300x300\")"
                  },
                  "format": {
                    "type": "string",
                    "description": "Output format (png, svg)"
                  }
                },
                "required": [
                  "data"
                ]
              }
            }
          }
        }
      }
    },
    "/replicate/v1/predictions": {
      "post": {
        "operationId": "replicate-v1-predictions",
        "summary": "Run a model (sync — waits for result)",
        "tags": [
          "ai",
          "media"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.020000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "version": {
                    "type": "string",
                    "description": "Model version hash"
                  },
                  "input": {
                    "type": "object",
                    "properties": {}
                  }
                },
                "required": [
                  "version",
                  "input"
                ]
              }
            }
          }
        }
      }
    },
    "/replicate/v1/predictions/status": {
      "post": {
        "operationId": "replicate-v1-predictions-status",
        "summary": "Check prediction status by ID",
        "tags": [
          "ai",
          "media"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.001000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "Prediction ID"
                  }
                },
                "required": [
                  "id"
                ]
              }
            }
          }
        }
      }
    },
    "/stability/v1/generate": {
      "post": {
        "operationId": "stability-v1-generate",
        "summary": "Generate an image from text (SD3)",
        "tags": [
          "ai",
          "media"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.030000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "prompt": {
                    "type": "string",
                    "description": "Text description of the image"
                  },
                  "negative_prompt": {
                    "type": "string",
                    "description": "What to exclude from the image"
                  },
                  "output_format": {
                    "type": "string",
                    "description": "Output format (png, jpeg, webp)"
                  },
                  "aspect_ratio": {
                    "type": "string",
                    "description": "Aspect ratio (1:1, 16:9, etc.)"
                  }
                },
                "required": [
                  "prompt"
                ]
              }
            }
          }
        }
      }
    },
    "/stability/v1/edit": {
      "post": {
        "operationId": "stability-v1-edit",
        "summary": "Search-and-replace edit on an image",
        "tags": [
          "ai",
          "media"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.030000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "image": {
                    "type": "string",
                    "description": "Base64 image to edit"
                  },
                  "prompt": {
                    "type": "string",
                    "description": "What to replace the search target with"
                  },
                  "search_prompt": {
                    "type": "string",
                    "description": "What to find in the image"
                  }
                },
                "required": [
                  "image",
                  "prompt",
                  "search_prompt"
                ]
              }
            }
          }
        }
      }
    },
    "/assemblyai/v1/transcribe": {
      "post": {
        "operationId": "assemblyai-v1-transcribe",
        "summary": "Submit audio URL for transcription",
        "tags": [
          "ai",
          "media"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.020000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "audio_url": {
                    "type": "string",
                    "description": "URL of the audio file"
                  },
                  "speaker_labels": {
                    "type": "boolean",
                    "description": "Enable speaker diarization"
                  },
                  "auto_chapters": {
                    "type": "boolean",
                    "description": "Auto-generate chapters"
                  }
                },
                "required": [
                  "audio_url"
                ]
              }
            }
          }
        }
      }
    },
    "/assemblyai/v1/result": {
      "post": {
        "operationId": "assemblyai-v1-result",
        "summary": "Get transcription result by ID (free — paid on submit)",
        "tags": [
          "ai",
          "media"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.001000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "description": "Transcription ID"
                  }
                },
                "required": [
                  "id"
                ]
              }
            }
          }
        }
      }
    },
    "/hunter/v1/search": {
      "post": {
        "operationId": "hunter-v1-search",
        "summary": "Find emails by domain name",
        "tags": [
          "data"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.020000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "domain": {
                    "type": "string",
                    "description": "Domain to search (e.g. \"stripe.com\")"
                  }
                },
                "required": [
                  "domain"
                ]
              }
            }
          }
        }
      }
    },
    "/hunter/v1/verify": {
      "post": {
        "operationId": "hunter-v1-verify",
        "summary": "Verify an email address",
        "tags": [
          "data"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.020000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "email": {
                    "type": "string",
                    "description": "Email address to verify"
                  }
                },
                "required": [
                  "email"
                ]
              }
            }
          }
        }
      }
    },
    "/ipinfo/v1/lookup": {
      "post": {
        "operationId": "ipinfo-v1-lookup",
        "summary": "Look up IP address details (geo, ASN, company)",
        "tags": [
          "data"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "ip": {
                    "type": "string",
                    "description": "IP address to look up (omit for your own IP)"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/translate/v1/translate": {
      "post": {
        "operationId": "translate-v1-translate",
        "summary": "Translate text between languages",
        "tags": [
          "translation"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "q": {
                    "type": "string",
                    "description": "Text to translate"
                  },
                  "target": {
                    "type": "string",
                    "description": "Target language code (e.g. \"es\", \"fr\")"
                  },
                  "source": {
                    "type": "string",
                    "description": "Source language code (auto-detected if omitted)"
                  }
                },
                "required": [
                  "q",
                  "target"
                ]
              }
            }
          }
        }
      }
    },
    "/translate/v1/detect": {
      "post": {
        "operationId": "translate-v1-detect",
        "summary": "Detect the language of text",
        "tags": [
          "translation"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "q": {
                    "type": "string",
                    "description": "Text to detect language of"
                  }
                },
                "required": [
                  "q"
                ]
              }
            }
          }
        }
      }
    },
    "/serpapi/v1/search": {
      "post": {
        "operationId": "serpapi-v1-search",
        "summary": "Google search with rich structured results",
        "tags": [
          "search"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "q": {
                    "type": "string",
                    "description": "Google search query"
                  },
                  "location": {
                    "type": "string",
                    "description": "Location for geo-targeted results"
                  },
                  "gl": {
                    "type": "string",
                    "description": "Country code"
                  },
                  "hl": {
                    "type": "string",
                    "description": "Language code"
                  }
                },
                "required": [
                  "q"
                ]
              }
            }
          }
        }
      }
    },
    "/serpapi/v1/flights": {
      "post": {
        "operationId": "serpapi-v1-flights",
        "summary": "Google Flights search — routes, prices, airlines",
        "tags": [
          "search"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "departure_id": {
                    "type": "string",
                    "description": "Departure airport IATA code (e.g. \"LAX\")"
                  },
                  "arrival_id": {
                    "type": "string",
                    "description": "Arrival airport IATA code (e.g. \"NRT\")"
                  },
                  "outbound_date": {
                    "type": "string",
                    "description": "Departure date (YYYY-MM-DD)"
                  },
                  "return_date": {
                    "type": "string",
                    "description": "Return date (YYYY-MM-DD)"
                  }
                },
                "required": [
                  "departure_id",
                  "arrival_id",
                  "outbound_date"
                ]
              }
            }
          }
        }
      }
    },
    "/serpapi/v1/locations": {
      "post": {
        "operationId": "serpapi-v1-locations",
        "summary": "Search locations for geo-targeted queries",
        "tags": [
          "search"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "q": {
                    "type": "string",
                    "description": "Location search query"
                  }
                },
                "required": [
                  "q"
                ]
              }
            }
          }
        }
      }
    },
    "/printful/v1/products": {
      "post": {
        "operationId": "printful-v1-products",
        "summary": "Browse catalog — all products, or by ID for sizes/colors",
        "tags": [
          "commerce"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "number",
                    "description": "Product ID (omit to list all)"
                  },
                  "category_id": {
                    "type": "number",
                    "description": "Filter by category"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/printful/v1/estimate": {
      "post": {
        "operationId": "printful-v1-estimate",
        "summary": "Get shipping and cost estimate for an order",
        "tags": [
          "commerce"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "recipient": {
                    "type": "object",
                    "properties": {
                      "address1": {
                        "type": "string",
                        "description": "Street address"
                      },
                      "city": {
                        "type": "string",
                        "description": "City"
                      },
                      "state_code": {
                        "type": "string",
                        "description": "State code"
                      },
                      "country_code": {
                        "type": "string",
                        "description": "Country code (e.g. \"US\")"
                      },
                      "zip": {
                        "type": "string",
                        "description": "ZIP code"
                      }
                    },
                    "required": [
                      "address1",
                      "city",
                      "country_code",
                      "zip"
                    ]
                  },
                  "items": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "variant_id": {
                          "type": "number",
                          "description": "Product variant ID"
                        },
                        "quantity": {
                          "type": "number",
                          "description": "Quantity"
                        }
                      },
                      "required": [
                        "variant_id",
                        "quantity"
                      ]
                    },
                    "description": "Order items"
                  }
                },
                "required": [
                  "recipient",
                  "items"
                ]
              }
            }
          }
        }
      }
    },
    "/printful/v1/order": {
      "post": {
        "operationId": "printful-v1-order",
        "summary": "Place a print-on-demand order (dynamic price: cost + 5%)",
        "tags": [
          "commerce"
        ],
        "x-payment-info": {
          "pricingMode": "quote",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "recipient": {
                    "type": "object",
                    "properties": {
                      "name": {
                        "type": "string",
                        "description": "Recipient name"
                      },
                      "address1": {
                        "type": "string",
                        "description": "Street address"
                      },
                      "city": {
                        "type": "string",
                        "description": "City"
                      },
                      "state_code": {
                        "type": "string",
                        "description": "State code"
                      },
                      "country_code": {
                        "type": "string",
                        "description": "Country code"
                      },
                      "zip": {
                        "type": "string",
                        "description": "ZIP code"
                      }
                    },
                    "required": [
                      "name",
                      "address1",
                      "city",
                      "country_code",
                      "zip"
                    ]
                  },
                  "items": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "variant_id": {
                          "type": "number",
                          "description": "Product variant ID"
                        },
                        "quantity": {
                          "type": "number",
                          "description": "Quantity"
                        },
                        "files": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "url": {
                                "type": "string",
                                "description": "Print file URL"
                              }
                            },
                            "required": [
                              "url"
                            ]
                          },
                          "description": "Print files"
                        }
                      },
                      "required": [
                        "variant_id",
                        "quantity"
                      ]
                    },
                    "description": "Order items"
                  }
                },
                "required": [
                  "recipient",
                  "items"
                ]
              }
            }
          }
        }
      }
    },
    "/pushover/v1/push": {
      "post": {
        "operationId": "pushover-v1-push",
        "summary": "Send a push notification",
        "tags": [
          "messaging"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "user": {
                    "type": "string",
                    "description": "Pushover user key"
                  },
                  "message": {
                    "type": "string",
                    "description": "Notification message"
                  },
                  "title": {
                    "type": "string",
                    "description": "Notification title"
                  },
                  "url": {
                    "type": "string",
                    "description": "Supplementary URL"
                  },
                  "priority": {
                    "type": "number",
                    "description": "Priority (-2 to 2)"
                  }
                },
                "required": [
                  "user",
                  "message"
                ]
              }
            }
          }
        }
      }
    },
    "/mistral/v1/chat/completions": {
      "post": {
        "operationId": "mistral-v1-chat-completions",
        "summary": "Chat completions (Mistral Large, Codestral, Mixtral)",
        "tags": [
          "ai"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "model": {
                    "type": "string",
                    "description": "Model name (e.g. gpt-4o, llama-3.3-70b)"
                  },
                  "messages": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "role": {
                          "type": "string",
                          "description": "Message role",
                          "enum": [
                            "system",
                            "user",
                            "assistant"
                          ]
                        },
                        "content": {
                          "type": "string",
                          "description": "Message content"
                        }
                      },
                      "required": [
                        "role",
                        "content"
                      ]
                    },
                    "description": "Conversation messages"
                  },
                  "temperature": {
                    "type": "number",
                    "description": "Sampling temperature (0-2)"
                  },
                  "max_tokens": {
                    "type": "number",
                    "description": "Maximum tokens to generate"
                  },
                  "stream": {
                    "type": "boolean",
                    "description": "Stream response tokens"
                  }
                },
                "required": [
                  "messages"
                ]
              }
            }
          }
        }
      }
    },
    "/mistral/v1/embeddings": {
      "post": {
        "operationId": "mistral-v1-embeddings",
        "summary": "Generate text embeddings",
        "tags": [
          "ai"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "model": {
                    "type": "string",
                    "description": "Embedding model name"
                  },
                  "input": {
                    "type": "string",
                    "description": "Text to embed (or array of strings)"
                  }
                },
                "required": [
                  "input"
                ]
              }
            }
          }
        }
      }
    },
    "/cohere/v1/chat": {
      "post": {
        "operationId": "cohere-v1-chat",
        "summary": "Chat with Command models",
        "tags": [
          "ai"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "model": {
                    "type": "string",
                    "description": "Model (command-r-plus, command-r)"
                  },
                  "messages": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "role": {
                          "type": "string",
                          "description": "Role (user, assistant, system)"
                        },
                        "content": {
                          "type": "string",
                          "description": "Message content"
                        }
                      },
                      "required": [
                        "role",
                        "content"
                      ]
                    },
                    "description": "Conversation messages"
                  }
                },
                "required": [
                  "messages"
                ]
              }
            }
          }
        }
      }
    },
    "/cohere/v1/embed": {
      "post": {
        "operationId": "cohere-v1-embed",
        "summary": "Generate text embeddings",
        "tags": [
          "ai"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "texts": {
                    "type": "array",
                    "items": {
                      "type": "string",
                      "description": "Text to embed"
                    },
                    "description": "Array of texts"
                  },
                  "model": {
                    "type": "string",
                    "description": "Model (embed-v4.0, embed-multilingual-v3.0)"
                  },
                  "input_type": {
                    "type": "string",
                    "description": "Input type (search_document, search_query)"
                  }
                },
                "required": [
                  "texts",
                  "input_type"
                ]
              }
            }
          }
        }
      }
    },
    "/cohere/v1/rerank": {
      "post": {
        "operationId": "cohere-v1-rerank",
        "summary": "Rerank search results by relevance",
        "tags": [
          "ai"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "query": {
                    "type": "string",
                    "description": "Search query to rerank against"
                  },
                  "documents": {
                    "type": "array",
                    "items": {
                      "type": "string",
                      "description": "Document text"
                    },
                    "description": "Documents to rerank"
                  },
                  "model": {
                    "type": "string",
                    "description": "Model (rerank-v3.5)"
                  },
                  "top_n": {
                    "type": "number",
                    "description": "Number of top results to return"
                  }
                },
                "required": [
                  "query",
                  "documents"
                ]
              }
            }
          }
        }
      }
    },
    "/virustotal/v1/scan": {
      "post": {
        "operationId": "virustotal-v1-scan",
        "summary": "Scan a URL or file hash for threats",
        "tags": [
          "security"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "url": {
                    "type": "string",
                    "description": "URL to scan for threats"
                  },
                  "hash": {
                    "type": "string",
                    "description": "File hash (SHA-256/MD5) to look up"
                  }
                }
              }
            }
          }
        }
      }
    },
    "/exchangerate/v1/rates": {
      "post": {
        "operationId": "exchangerate-v1-rates",
        "summary": "Get exchange rates for a base currency",
        "tags": [
          "finance"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "base": {
                    "type": "string",
                    "description": "Base currency code (e.g. \"USD\")"
                  }
                },
                "required": [
                  "base"
                ]
              }
            }
          }
        }
      }
    },
    "/exchangerate/v1/convert": {
      "post": {
        "operationId": "exchangerate-v1-convert",
        "summary": "Convert an amount between two currencies",
        "tags": [
          "finance"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "from": {
                    "type": "string",
                    "description": "Source currency code"
                  },
                  "to": {
                    "type": "string",
                    "description": "Target currency code"
                  },
                  "amount": {
                    "type": "number",
                    "description": "Amount to convert"
                  }
                },
                "required": [
                  "from",
                  "to",
                  "amount"
                ]
              }
            }
          }
        }
      }
    },
    "/shortio/v1/shorten": {
      "post": {
        "operationId": "shortio-v1-shorten",
        "summary": "Shorten a URL",
        "tags": [
          "utility"
        ],
        "x-payment-info": {
          "pricingMode": "fixed",
          "price": "0.010000",
          "protocols": [
            "mpp"
          ]
        },
        "responses": {
          "200": {
            "description": "Successful response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          },
          "402": {
            "description": "Payment Required"
          }
        },
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "url": {
                    "type": "string",
                    "description": "URL to process"
                  }
                },
                "required": [
                  "url"
                ]
              }
            }
          }
        }
      }
    }
  }
}