API Dokümanı
360 Medya API ile otomatik sipariş yönetimi
🔑 API Anahtarınız
Lütfen giriş yapın
📡 Temel Bilgiler
Base URL: https://360medyasmm.com.tr/api/v1/
Authentication: API anahtarınızı header ile gönderin: X-API-Key: YOUR_API_KEY
📦 Sipariş Oluşturma
POST
/order/create| Parametre | Tür | Zorunlu | Açıklama |
|---|---|---|---|
| service_id | int | Evet | Servis ID'si |
| link | string | Evet | Sosyal medya linki |
| quantity | int | Evet | Miktar |
curl -X POST https://360medyasmm.com.tr/api/v1/order/create -H "X-API-Key: API_KEY" -d '{"service_id":10010,"link":"https://instagram.com/example","quantity":1000}'🔍 Sipariş Sorgulama
GET
/order/status/{order_id}curl -X GET "https://360medyasmm.com.tr/api/v1/order/status/%23ABC123?api_key=API_KEY"
💰 Bakiye Sorgulama
GET
/balancecurl -X GET "https://360medyasmm.com.tr/api/v1/balance?api_key=API_KEY"
{"status":"success","balance":"1250.50 TL"}⚠️ Hata Kodları
| Kod | Açıklama |
|---|---|
| 400 | Geçersiz istek |
| 401 | Yetkisiz erişim |
| 402 | Yetersiz bakiye |
| 404 | Servis bulunamadı |
| 429 | Çok fazla istek |