Interesting Climate Facts is a free open source API that provides the user with different facts and figures about environment.
https://icf-api.vercel.app/
- List all of the facts
- Get a random fact
- Get a fact by id
- Get facts by term
- Generate random quote - Codesandbox
- Search facts by term - Codesandbox
- Search term by ID - Codesandbox
{
id: number; // id for finding specific facts
fact: string; // a fact
}
Returns a list of all the facts
GET / facts;
Returns a single random fact.
GET / random;
Returns a fact with a specific id. Returns 404 if
GET /fact/:id
Returns all of the facts that include a term. Returns 404 if there are no facts that include the searches term.
GET /search/:term