French Verb Conjugation API
Verbi is a REST API that provides French verb conjugations by scraping data from leconjugueur.lefigaro.fr. It supports searching for verbs and retrieving full conjugation tables across all tenses and moods.
- Full verb conjugation retrieval
- Search/suggestions for verbs
- Filter by mode (Indicatif, Subjonctif, Conditionnel, Impératif, Infinitif, Participe)
- Filter by specific tense within a mode
npm installnode index.jsThe server runs on port 3000 by default.
| Endpoint | Description |
|---|---|
GET / |
API information |
GET /api/search/:query |
Search for verbs |
GET /api/conjugate/:verb |
Get all conjugations for a verb |
GET /api/conjugate/:verb/:mode |
Get conjugations for a specific mode |
GET /api/conjugate/:verb/:mode/:tense |
Get conjugations for a specific tense |
# Search for verbs starting with "fair"
curl http://localhost:3000/api/search/fair
# Get all conjugations for "faire"
curl http://localhost:3000/api/conjugate/faire
# Get only Indicatif mode
curl http://localhost:3000/api/conjugate/faire/indicatif
# Get a specific tense
curl http://localhost:3000/api/conjugate/faire/indicatif/present- Express.js
- Axios
- Cheerio (HTML scraping)
- CORS