Trouve-mot
Si pour un projet vous avez besoin de récupérer des mots triés ou non par catégories, vous êtes au bon endroit !
Vous retrouverez ici 6391 mots français parmis 61 catégories différentes.
/api/random // Génère 1 mot aléatoire/api/random/10 // Génère 10 mots aléatoires
fetch("/api/random/2") .then((response) => response.json()) .then((words) => console.log(words))
/api/startwith/B // Génère 1 mot aléatoire commençant par B/api/startwith/B/10 // Génère 10 mots aléatoires commençant par B
fetch("/api/startwith/B/2") .then((response) => response.json()) .then((words) => console.log(words))
/api/categorie/19 // Génère 1 mot de la catégorie "ANIMAUX"/api/categorie/19/10
fetch("/api/categorie/19/2") .then((response) => response.json()) .then((words) => console.log(words))
/api/daily /api/weekly /api/monthly
fetch("/api/daily") .then((response) => response.json()) .then((words) => console.log(words))
/api/size/5 // Génère 1 mot aléatoire de 5 caractères/api/size/5/10/api/sizemin/6 // Génère 1 mot aléatoire de minimum 6 caractères/api/sizemin/6/10/api/sizemax/4 // Génère 1 mot aléatoire de maximum 4 caractères/api/sizemax/4/10
fetch("/api/sizemin/6/2") .then((response) => response.json()) .then((words) => console.log(words))