question

Upvotes
Accepted
3 0 1 2

How do I pull StarMine model history from EDP?

I'm exploring the EDP API Gateway and noticed that there are some StarMine APIs available. For example, this one gives you all the StarMine model scores for a particular company:
https://api.edp.thomsonreuters.com/data/starmine/beta1/views/models?universe=IBM.N

How do I pull StarMine model scores for a specific data range? I tried passing in "start" and "end" params, but they didn't appear to influence the request at all.

rdp-apirefinitiv-data-platformstarmine
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

1 Answer

· Write an Answer
Upvote
Accepted
13.7k 26 8 12

@Adam.Baron, there are only 2 parameters for this call:

  1. Required: universe (i.e. the instrument)
  2. Optional: format (which, if set to "noMessages", will remove the messages object from the output; this parameter cannot take any other value)

This is documented in the APIDocs swagger documentation.

Example call using both parameters (the actual token was replaced by <bearer_token>):

curl -X GET "https://api.edp.thomsonreuters.com/data/starmine/beta1/views/models?universe=IBM.N&format=noMessages" -H "accept: application/json" -H "Authorization: Bearer <bearer_token>"

It is not possible to specify the data range.

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Any idea if adding historical query ability of the StarMine models is in the EDP API queue?

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.