```html Wingman Protocol AI Chat API

Drop-in OpenAI Replacement at 1/10th the Cost

Get Started

The Problem

The Solution

Wingman Protocol's AI Chat API offers a cost-effective, easy-to-integrate, and scalable solution for all your AI chat needs.

Pricing

Basic Plan

$0.10 per 1,000 tokens

Pro Plan

$0.08 per 1,000 tokens

Enterprise Plan

Custom pricing

Code Example


import requests

url = "https://api.wingmanprotocol.com/v1/chat"
headers = {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json"
}
data = {
    "model": "wingman-v1",
    "messages": [{"role": "user", "content": "Hello, Wingman!"}]
}

response = requests.post(url, headers=headers, json=data)
print(response.json())
            

FAQ

Get Started Today
```