File size: 8,178 Bytes
2af6ef5 bd113f3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 | ---
title: PhantomAPI
emoji: 👻
colorFrom: purple
colorTo: indigo
sdk: docker
pinned: false
---
<div align="center">
# 👻 PhantomAPI
### Turn ChatGPT into a FREE OpenAI-Compatible API
[](https://fastapi.tiangolo.com/)
[](https://playwright.dev/)
[](https://docker.com/)
[](LICENSE)
**The invisible proxy that bridges ChatGPT's free web interface with your AI automation workflows.**
[Quick Start](#-quick-start) · [n8n Integration](#-connecting-to-n8n) · [Architecture](#-architecture) · [Docker](#-docker-deployment)
</div>
<div align="center">
<video src="demo.mp4" width="800" controls muted autoplay loop></video>
</div>
---
## 🌟 What is PhantomAPI?
**PhantomAPI** is a high-performance proxy server that makes ChatGPT's free web interface behave like the official OpenAI API. It's designed as a **drop-in replacement** for any tool that speaks the OpenAI protocol — especially **n8n**.
### ✨ Key Features
| Feature | Description |
|:---|:---|
| 💸 **Zero API Costs** | Uses ChatGPT's free web interface via headless browser automation |
| ⚡ **Async Architecture** | Built on FastAPI with a dedicated browser thread for non-blocking requests |
| 🤖 **AI Agent Support** | Full tool-calling / function-calling support for n8n Agent nodes |
| 🔒 **API Key Auth** | Protected with Bearer token authentication |
| 🐳 **Docker Ready** | Deploy in seconds with `docker-compose up` |
| 🎨 **Built-in GUI** | A sleek dark-mode chat interface for quick testing |
| 📐 **Clean Architecture** | Proper FastAPI structure — routers, schemas, services, utils |
---
## ⚙️ How It Works
```
┌──────────┐ HTTP/JSON ┌──────────────┐ Playwright ┌──────────────┐
│ n8n │ ──────────────────▶ │ PhantomAPI │ ──────────────────▶ │ ChatGPT │
│ (or any │ ◀────────────────── │ (FastAPI) │ ◀────────────────── │ (Web UI) │
│ client) │ OpenAI Schema │ │ Scrape Response │ │
└──────────┘ └──────────────┘ └──────────────┘
```
1. **You send** a standard OpenAI API request to PhantomAPI
2. **PhantomAPI** formats your messages into a prompt and types it into ChatGPT's web interface using a stealth browser
3. **ChatGPT responds** on the web page — PhantomAPI scrapes the text
4. **The response** is formatted back into the official OpenAI JSON schema and returned to you
---
## 🛠️ Quick Start
### Prerequisites
- **Python 3.10+**
- **Google Chrome** installed on your system
### 1. Clone & Install
```bash
git clone https://github.com/mrshibly/phantom-api.git
cd phantom-api
pip install -r requirements.txt
python -m playwright install chromium
```
### 2. Configure
```bash
cp .env.example .env
# Edit .env and set your API_SECRET_KEY
```
### 3. Run
```bash
python run.py
```
The server will start on `http://localhost:7777`.
| Endpoint | Description |
|:---|:---|
| `http://localhost:7777/` | Health check |
| `http://localhost:7777/docs` | Swagger UI (interactive API docs) |
| `http://localhost:7777/gui` | Chat GUI for quick testing |
---
## 🔌 Connecting to n8n
<div align="center">
<img src="n8n_preview.png" width="800" alt="n8n Workflow Example">
</div>
### Method 1: OpenAI Node (Recommended)
1. In n8n, go to **Credentials → New → OpenAI API**
2. Set **Base URL** to: `http://127.0.0.1:7777/v1`
3. Set **API Key** to your `API_SECRET_KEY` from `.env`
4. Use this credential in any **OpenAI** or **AI Agent** node
> **Docker Tip:** If n8n runs in Docker, use `http://host.docker.internal:7777/v1`
### Method 2: HTTP Request Node
1. Add an **HTTP Request** node
2. **Method:** `POST`
3. **URL:** `http://127.0.0.1:7777/v1/chat/completions`
4. **Authentication:** Header Auth → `Authorization: Bearer YOUR_KEY`
5. **Body (JSON):**
```json
{
"model": "gpt-4o-mini",
"messages": [
{ "role": "user", "content": "Hello, PhantomAPI!" }
]
}
```
---
## 📐 Architecture
```
phantom-api/
├── app/
│ ├── main.py # App factory, CORS, lifespan
│ ├── config.py # Environment-driven settings
│ ├── dependencies.py # Auth dependency injection
│ ├── api/v1/
│ │ ├── router.py # Route aggregator
│ │ ├── chat.py # POST /v1/chat/completions
│ │ ├── responses.py # POST /v1/responses
│ │ └── models.py # GET /v1/models
│ ├── schemas/
│ │ ├── chat.py # Request/Response models
│ │ └── responses.py # Responses API models
│ ├── services/
│ │ └── browser.py # Playwright browser engine
│ └── utils/
│ ├── prompt.py # Smart prompt builder
│ └── parser.py # Tool-call JSON parser
├── static/
│ └── index.html # Chat GUI
├── tests/
│ └── test_health.py # Endpoint tests
├── Dockerfile
├── docker-compose.yml
├── requirements.txt
├── .env.example
└── run.py # Entry point
```
---
## 🐳 Docker Deployment
```bash
# Build and run
docker-compose up --build -d
# The server is now running on http://localhost:7777
```
---
## 🤗 Hugging Face Spaces Deployment
You can deploy PhantomAPI directly to Hugging Face Spaces for free.
1. **Create a New Space**: Go to [huggingface.co/new-space](https://huggingface.co/new-space)
2. **Select SDK**: Choose **Docker**
3. **Choose Template**: Select **Blank** (The existing `Dockerfile` will be used automatically)
4. **Configure Secrets**:
- Go to **Settings → Variables and secrets** in your Space
- Add a new **Secret** named `API_SECRET_KEY` with your desired token
5. **Push Code**:
```bash
git remote add hf https://huggingface.co/spaces/YOUR_USERNAME/YOUR_SPACE_NAME
git push -u hf main
```
PhantomAPI will automatically start on port `7860`.
---
## 🔧 API Reference
### `POST /v1/chat/completions`
Standard OpenAI Chat Completions endpoint. Supports messages, tools, and function calling.
### `POST /v1/responses`
Modern Responses API for newer n8n versions. Accepts `input` (string or messages) and optional `instructions`.
### `GET /v1/models`
Returns available model identifiers (used by n8n's model dropdown).
### `GET /`
Health check — returns server status and version.
---
## 📄 License
This project is open-sourced under the [MIT License](LICENSE).
---
<div align="center">
**Built with ❤️ by [mrshibly](https://github.com/mrshibly)**
</div>
Hugging Face Secrets Set Karein: Hugging Face Space ke Settings -> Variables and secrets mein jayein aur ye add karein:
CHATGPT_SESSION_TOKEN: Isme apna ChatGPT session token dalein (Chrome DevTools -> Application -> Cookies -> __Secure-next-auth.session-token).
PROXY_URL: (Optional) Agar IP block ho rahi hai, toh apna proxy URL dalein (e.g., http://username:password@ip:port).
Logs Check Karein: Push karne ke baad agar fir bhi fail hota hai, toh mujhe naye logs dikhaiye. Ab logs mein humein saaf dikhega ki browser login page par hai ya Cloudflare par. |