API-Dokumentation
- HTTP Methode POST
-
API URL
https://followerjetztkaufen.de//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"}
MassenprĂŒfung von AuftrĂ€gen
- apikey Ihr API-SchlĂŒssel
-
action
status - order Id AuftrÀge, durch Komma getrennt (max. 50)
Antwort
{
"orders": {
"14565": "process",
"14566": "success",
"14567": "Incorrect order ID"
}
}
Beispiel in Python
import requests
url = 'https://followerjetztkaufen.de//api'
data = {
'apikey': 'Your API Key',
'action': '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)
Copyright © 2026 by FollowerJetztKaufen