Zurück zu Home
API für Wiederverkäufer
API-Dokumentation
-
HTTP Methode
POST
-
API URL
https://follower-kaufen24.com/api
-
Antwortformat
JSON
Überprüfung der Balance
-
apikey
Ihr API-Schlüssel
-
action
balance
Antwort:
{'orders': '179.00'}
Hinzufügen einer Bestellung
-
apikey
Ihr API-Schlüssel
-
action
add
-
service
instagram/follower
-
count
Menge
-
url
Link zur Seite zum Pushen
Antwort:
{'Order': 14565}
Überprüfung des Auftragsstatus
-
apikey
Ihr API-Schlüssel
-
action
status
-
order
Order-ID
Antwort:
{'Order': 14565, 'status': 'process' //process, success}
Massenprüfung von Aufträgen
-
apikey
Ihr API-Schlüssel
-
action
status
-
order
Id Aufträge, durch Komma getrennt (maximal 50 Aufträge)
Antwort:
{"orders":
{"14565": "process"},
{"14566": "success"},
{"14567": "Incorrect order ID"}
}
Beispiel in Python
Python:
import requests
import json
url = 'https://Follower-Kaufen24/api'
data = {
'apikey': 'Your API Key',
'aktion': 'add', //balance, status
'service': 'instagram/follower',
'url': 'https://www.instagram.com/YourProfile',
'count': '1000'
}
response = requests.post(url, json=data)
if response.status_code == 200:
response_data = response.json()
print("Antwort:", response_data)
else:
print(f"Fehler: {response.status_code}")
print("Antwort:", response.text)