Refinitiv Data Library for TypeScript

Overview

Summary

Search content objects give your application an easy access to the Refinitiv Search API that is powered by a Google-like search engine covering content such as

  • quotes,
  • instruments,
  • organizations and many other assets.

Examples of usage:


const searchDefinition = Search.Definition({ 'CTO Microsoft', view: Search.View.People });

session.open()
    .then(() => searchDefinition.getData(session)
    .then(console.log)
    .catch(console.log)
    .finally(() => session.close());
);