/v1/boards
All boards
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
…