Μετάβαση στο περιεχόμενο
GET /v1/social

A creator's followers or following

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/openprocessing-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

curl "https://api.oanor.com/openprocessing-api/v1/social" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/openprocessing-api/v1/social", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/openprocessing-api/v1/social");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/openprocessing-api/v1/social",
    headers={"x-oanor-key": "oanor_test_..."}
)

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "type": "followers",
        "count": 50,
        "limit": 50,
        "users": [
            {
                "since": "2020-04-19 11:54:26",
                "user_id": 134,
                "fullname": "ahmet kizilay",
                "username": "ahmetkizilay",
                "membership_type": 0
            },
            {
                "since": "2026-03-19 23:45:01",
                "user_id": 990,
                "fullname": "Owaun Scantlebury",
                "username": "owaun",
                "membership_type": 1
            },
            {
                "since": "2024-07-18 01:51:55",
                "user_id": 1273,
                "fullname": "Marius Watz",
                "username": "watz",
                "membership_type": 0
            },
            {
                "since": "2012-03-23 04:38:39",
                "user_id": 1277,
                "fullname": "R.A. Robertson",
                "username": "Phospheros",
                "membership_type": 0
            },
            {
                "since": "2013-02-21 07:08:34",
                "user_id": 1707,
                "fullname": "haoyun",
                "username": "misterioso",
                "membership_type": 0
            },
            {
                "since": "2012-04-24 19:02:52",
                "user_id": 1720,
                "fullname": "bitcraft",
                "username": "bitcraft_1720",
                "membership_type": 0
            },
            {
                "since": "2018-01-27 17:13:18",
                "user_id": 2039,
                "fullname": "Joshua Fishburn",
                "username": "jafish",
                "membership_type": 0
            },
            {
                "since": "2021-11-03 15:16:42",
                "user_id": 3020,
                "fullname": "Clay Heaton",
                "username": "ccheaton",
                "membership_type": 1
            },
            {
                "since": "2021-10-19 13:26:37",
                "user_id": 3417,
                "fullname": "Caleb Mascarenhas",
                "username": "calebml",
                "membership_type": 1
            },
            {
                "since": "2012-03-20 13:35:11",
                "user_id": 3942,
                "fullname": "Kof (Kryštof Pešek)",
                "username": "kof",
                "membership_type": 0
            },
            {
                "since": "2019-01-11 18:56:35",
                "user_id": 5362,
                "fullname": "Henrique Silva",
                "username": "hsilva321",
                "membership_type": 1
            },
            {
                "since": "2012-07-07 09:48:47",
                "user_id": 6009,
                "fullname": "Justin Lincoln",
                "username": "jlincoln",
                "membership_type": 0
            },
            {
                "since": "2026-05-16 23:48:15",
                "user_id": 6128,
               
…