> For the complete documentation index, see [llms.txt](https://docs.jetpero.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.jetpero.com/basics/sdks-and-tools.md).

# SDKs & Tools

### 📦 Node.js SDK (Coming Soon)

We’re building a lightweight Node.js SDK that handles:

* 🔐 Token management
* 📡 Simplified proxy calls
* ⚙️ Easy provider configuration
* 🔄 Retry & error handling

✅ Planned Commands:

```js
jetpero.init({ token: "your_project_token" });

const result = await jetpero.call("openai", "/chat/completions", {
  model: "gpt-4",
  messages: [{ role: "user", content: "Hey" }],
});
```

> 🧪 ETA: Q2 2025 — Sign up to get early access in the dashboard!

### 🐍 Python SDK (Coming Soon)

We’re also working on a developer-first Python wrapper for teams building with tools like FastAPI, Flask, or LangChain.

✅ Features:

* Fast setup with token
* Method chaining for proxy calls
* Built-in provider utilities

```bash
from jetpero import JetPero

jp = JetPero("your_project_token")
res = jp.call("openai", "/chat/completions", {
  "model": "gpt-4",
  "messages": [{"role": "user", "content": "Hello"}]
})
```

> 🐍 ETA: Q3 2025 — Let us know if you want to contribute or test.

### 💻 CLI Tool (Roadmap)

We're designing a JetPero CLI for:

* 🔐 Token initialization
* 🚀 Triggering test requests
* 📊 Viewing usage logs
* 🔄 Managing providers

Example command:

```bash
bashCopyEditjetpero test --provider openai --endpoint /chat/completions
```

> 💡 Want to help shape the CLI? Email us <jetpero.io@gmail.com>

### 🧪 cURL: Your Instant Friend

If you're not using an SDK yet, just use `curl`. Here’s the standard way to test any endpoint:

```bash
bashCopyEditcurl https://api.jetpero.com/proxy/<provider-name>/<endpoint> \
  -H "Authorization: Bearer <Your-Project-Token>" \
  -H "Content-Type: application/json" \
  -d '{ "your": "payload" }'
```

Simple, reliable, and works everywhere.

### 🔌 Postman Collection

Coming soon: A pre-configured Postman collection with:

* ✅ Sample requests
* 🔐 Token management
* 🔄 Environment switching

> 📥 Download link will be available in the dashboard soon.

***

### ⚒️ Contributions Welcome

Want to help improve or extend JetPero SDKs? We love the community.

* GitHub Repo (coming soon)
* Star, fork, or open an issue
* Build wrappers for your language of choice
