/v1/boards
All boards
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/fourchan-api/v1/boards" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fourchan-api/v1/boards", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fourchan-api/v1/boards");
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/fourchan-api/v1/boards",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"count": 77,
"boards": [
{
"board": "3",
"pages": 10,
"title": "3DCG",
"worksafe": true,
"bump_limit": 310,
"description": "\"/3/ - 3DCG\" is 4chan's board for 3D modeling and imagery.",
"image_limit": 150,
"threads_per_page": 15
},
{
"board": "a",
"pages": 10,
"title": "Anime & Manga",
"worksafe": true,
"bump_limit": 500,
"description": "\"/a/ - Anime & Manga\" is 4chan's imageboard dedicated to the discussion of Japanese animation and manga.",
"image_limit": 300,
"threads_per_page": 15
},
{
"board": "aco",
"pages": 10,
"title": "Adult Cartoons",
"worksafe": false,
"bump_limit": 300,
"description": "\"/aco/ - Adult Cartoons\" is 4chan's imageboard for posting western-styled adult cartoon artwork.",
"image_limit": 300,
"threads_per_page": 15
},
{
"board": "adv",
"pages": 10,
"title": "Advice",
"worksafe": true,
"bump_limit": 310,
"description": "\"/adv/ - Advice\" is 4chan's board for giving and receiving advice.",
"image_limit": 150,
"threads_per_page": 15
},
{
"board": "an",
"pages": 10,
"title": "Animals & Nature",
"worksafe": true,
"bump_limit": 310,
"description": "\"/an/ - Animals & Nature\" is 4chan's imageboard for posting pictures of animals, pets, and nature.",
"image_limit": 150,
"threads_per_page": 15
},
{
"board": "b",
"pages": 10,
"title": "Random",
"worksafe": false,
"bump_limit": 300,
"description": "\"/b/ - Random\" is the birthplace of Anonymous, and where people go to discuss random topics and create memes on 4chan.",
"image_limit": 150,
"threads_per_page": 15
},
{
"board": "bant",
"pages": 10,
"title": "International/Random",
"worksafe": false,
"bump_limit": 300,
"description": "\"/bant/ - International/Random\" is 4chan's international hanging out board, where you can have fun with Anonymous all over the world.",
"image_limit": 150,
"threads_per_page": 15
},
{
"board": "biz",
"pages": 10,
"ti
…