LiterateInk
API

Online Services

Retrieve online services the feed gives you.

Listing online services

import * as crous from "crowous";
 
const onlineServices = await crous.onlineServices("bordeaux");
 
for (const onlineService of onlineServices) {
  console.log(`- ${onlineService.title} : ${onlineService.shortDescription ?? "(no description)"} @ ${onlineService.url}`);
}
output.txt
- Payer avec Izly : Accéder à mon compte @ http://www.izly.fr/
- Suivez-nous sur Facebook ! : (no description) @ http://www.facebook.com/crous.debordeauxaquitain
...

Note that shortDescription could be null if the online service doesn't have a description.

Also, sometimes, given URLs could be outdated or are not working anymore, sadly we can't do anything about it.

On this page