Getting Started
Welcome to the official documentation for Siputzx API — the ultimate free public API hub that aggregates data from hundreds of websites into a single, powerful interface.
ZERO BARRIERS
No API Key Required. No Login Needed. Siputzx API is designed for pure developer freedom. You do not need to register an account or manage complex authorization headers. Just install and request.
Supported By
This free service is made possible by our generous infrastructure partners.
🤝 Our Partners
- 🚀 Atlantic Server - High-performance server and hosting solutions.
- 🌐 Bihost - Reliable web hosting for your digital needs.
Installation
To interact with Siputzx API, you need an HTTP client. Select your preferred environment below to install the necessary libraries.
$ npm install axios$ yarn add axios$ pnpm add axios$ pip install requestsQuick Start Example
Here is how to make your first request to Siputzx API. Since no API key is required, the code is extremely minimal.
const axios = require('axios');
async function main() {
try {
// Example: Using the AI Endpoint (Llama 3.3)
// Replace the URL with any valid Siputzx Endpoint
const url = 'https://api.siputzx.my.id/api/ai/llama33';
const params = {
text: "Hello, tell me about Siputzx API!"
};
const response = await axios.get(url, { params });
console.log("Response:", response.data);
} catch (error) {
console.error("Error fetching data:", error.message);
}
}
main();import requests
def main():
# Example: Using the AI Endpoint (Llama 3.3)
# Replace the URL with any valid Siputzx Endpoint
url = "https://api.siputzx.my.id/api/ai/llama33"
params = {
"text": "Hello, tell me about Siputzx API!"
}
try:
response = requests.get(url, params=params)
response.raise_for_status() # Check for HTTP errors
print("Response:", response.json())
except requests.exceptions.RequestException as e:
print(f"Error fetching data: {e}")
if __name__ == "__main__":
main()Features Overview
NOTE
Siputzx API is an Aggregator. This means we scrape and unify data from hundreds of different sources (AI, Downloaders, Search Engines, etc.) so you don't have to build scrapers yourself.
| Feature Category | Description | Availability |
|---|---|---|
| 🤖 AI & LLM | Access Llama 3.3, GPT-4o, Gemini, and more. | ✅ Free |
| 📥 Downloaders | TikTok, Instagram, YouTube, Spotify, etc. | ✅ Free |
| 🔍 Search Tools | Google Search, Pinterest, Lyrics, etc. | ✅ Free |
| 🛠️ Utilities | Text tools, image manipulation, convertors. | ✅ Free |
Fair Usage Policy
Although Siputzx API is free, we ask developers to use it responsibly to ensure stability for everyone.
IMPORTANT
Do not spam the endpoints. While there are no hard rate limits enforced by API keys, excessive request flooding (DDoS-like behavior) will trigger our Anti-DDoS protection (Cloudflare/Firewall) and may result in your IP being temporarily banned.