πŸš€
JetPero
  • Welcome to JetPero API Platform
  • Getting Started
    • Quickstart
  • Signup & Setup
  • Your First API Key
  • Basics
    • Integrations
    • API Requests & Responses
    • SDKs & Tools
  • Features
    • API Key Management
    • Monitoring & Analytics
    • Alerts & Notifications
    • Security
  • Plans & Limits
    • Pricing
    • Rate Limits
  • Help
    • Troubleshooting & FAQ
    • Contact Support
Powered by GitBook
On this page
  • πŸ“¦ Node.js SDK (Coming Soon)
  • 🐍 Python SDK (Coming Soon)
  • πŸ’» CLI Tool (Roadmap)
  • πŸ§ͺ cURL: Your Instant Friend
  • πŸ”Œ Postman Collection
  • βš’οΈ Contributions Welcome
  1. Basics

SDKs & Tools

JetPero provides a growing set of SDKs and developer tools to make integration lightning-fast and secure. Whether you're working with Node.js, Python, or just cURL, we’ve got you covered.

πŸ“¦ 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:

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

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:

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

πŸ§ͺ cURL: Your Instant Friend

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

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

PreviousAPI Requests & ResponsesNextAPI Key Management

Last updated 1 month ago

πŸ’‘ Want to help shape the CLI? Email us

[email protected]