Zurück zu Home

API für Wiederverkäufer

  • HTTP Methode

    POST

  • API URL

    https://proflike.com/api

  • Antwortformat

    JSON

  • apikey

    Ihr API-Schlüssel

  • action

    balance

Antwort:

{'orders': '179.00'}
  • apikey

    Ihr API-Schlüssel

  • action

    add

  • service

    instagram/follower

  • count

    Menge

  • url

    Link zur Seite zum Pushen

Antwort:

{'Order': 14565}
  • apikey

    Ihr API-Schlüssel

  • action

    status

  • order

    Order-ID

Antwort:

{'Order': 14565, 'status': 'process' //process, success}
  • 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"}
}
                        

Python:

import requests
import json

url = 'https://proflike.com/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)
                        

Copyright © 2024 by ProfLike, Inc. All rights reserved.