Discover Refinitiv
MyRefinitiv Refinitiv Perspectives Careers
Created with Sketch.
All APIs Questions & Answers  Register |  Login
Ask a question
  • Questions
  • Tags
  • Badges
  • Unanswered
Search:
  • Home /
  • Refinitiv Data Platform /
avatar image
REFINITIV
Question by p.schickedanz@refinitiv · Jan 12 at 11:45 AM · esgfunds

Fund ESG scores - which API?

1. Which API is suitable to fetch Fund ESG Scores including all Fund ESG sub-category scores?
2. Are Fund ESG Scores available historically?
3. Is there a list of available Fund ESG data items?

People who like this

0 Show 0
Comment
10 |1500 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

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

2 Replies

  • Sort: 
avatar image
REFINITIV
Best Answer
Answer by b.lee · Jan 19 at 09:15 AM

@p.schickedanz@refinitiv , An alternative answer: If you want to focus on funds' data, The RDP Funds API provides fund level ESG data, and it also supports historical historical data. RDP Funds API is an REST API. e.g. If you send the query to get a fund's latest ESG Scores like this:

https://api.refinitiv.com/data/funds/v1/assets?symbols=60000012&properties=ESG

You should get back a JSON looks like:

{
  "assets": [
    {
      "id": "60000012",
      "esg": [
        {
          "date": "2021-09-30",
          "items": [
            {
              "type": {
                "id": "56300",
                "code": "ESGSC",
                "name": "ESG Score"
              },
              "value": 67.40902732
            },
            {
              "type": {
                "id": "56301",
                "code": "SGCvrgcnt",
                "name": "ESG Coverage count"
              },
              "value": 99.0
            },
            {
              "type": {
                "id": "56303",
                "code": "NEVIRPS",
                "name": "Environment Pillar Score"
              },
              "value": 58.75041536
            },
            {
              "type": {
                "id": "56304",
                "code": "RsrcsScr",
                "name": "Resource Use Score"
              },
              "value": 72.380066
            },
            {
              "type": {
                "id": "56305",
                "code": "mssnsScr",
                "name": "Emissions Score"
              },
              "value": 71.59596692
            },
            {
              "type": {
                "id": "56306",
                "code": "nvrnmntlnnvt",
                "name": "Environmental Innovation Score"
              },
              "value": 39.59542526
            },
            {
              "type": {
                "id": "56307",
                "code": "SclPllrScr",
                "name": "Social Pillar Score"
              },
              "value": 71.50510399
            },
            {
              "type": {
                "id": "56308",
                "code": "WrkfrcScr",
                "name": "Workforce Score"
              },
              "value": 80.22544167
            },
            {
              "type": {
                "id": "56309",
                "code": "HmnRghtsScr",
                "name": "Human Rights Score"
              },
              "value": 58.86628888
            },
            {
              "type": {
                "id": "56310",
                "code": "CmmntyScr",
                "name": "Community Score"
              },
              "value": 74.32150591
            },
            {
              "type": {
                "id": "56311",
                "code": "PrdctRspnsbl",
                "name": "Product Responsibility Score"
              },
              "value": 66.14554738
            },
            {
              "type": {
                "id": "56312",
                "code": "GvrnncPllrSc",
                "name": "Governance Pillar Score"
              },
              "value": 65.8922942
            },
            {
              "type": {
                "id": "56313",
                "code": "MngmntScr",
                "name": "Management Score"
              },
              "value": 70.47540782
            },
            {
              "type": {
                "id": "56314",
                "code": "ShrhldrsScr",
                "name": "Shareholders Score"
              },
              "value": 54.07836019
            },
            {
              "type": {
                "id": "56315",
                "code": "CSRStrtgyScr",
                "name": "CSR Strategy Score"
              },
              "value": 60.69762714
            },
            {
              "type": {
                "id": "56316",
                "code": "SGCmbndScr",
                "name": "ESG Combined Score"
              },
              "value": 58.74422268
            },
            {
              "type": {
                "id": "56317",
                "code": "SGCntrvrssSc",
                "name": "ESG Controversies Score"
              },
              "value": 72.94119538
            },
            {
              "type": {
                "id": "56302",
                "code": "SGCvrgVl",
                "name": "ESG Coverage % Value"
              },
              "value": 97.57252916
            }
          ]
        }
      ]
    }
  ],
  "totalRecords": 1,
  "fromIndex": 0,
  "toIndex": 0,
  "pageNumber": 0
}

You can add the start and end dates to query historical data.


Comment

People who like this

0 Show 0 · Share
10 |1500 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

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

avatar image
REFINITIV
Answer by Gurpreet · Jan 12 at 05:41 PM

Hi @p.schickedanz@refinitiv,

ESG scores are available primarily through Eikon and Refinitiv Data Platform. The ESG universe is still expanding and so far we don't have coverage for every instrument or funds.

You can use the following approach with either of these APIs to get the subset ESG score and aggregate it yourself:

https://community.developers.refinitiv.com/questions/67140/how-to-get-esg-score-and-dividend-payment-frequenc.html

The scores are available historically, and you get check the coverage universe from RDP using the endpoint - https://api.refinitiv.com/data/environmental-social-governance/v2/universe


Comment

People who like this

0 Show 0 · Share
10 |1500 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

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

Watch this question

Add to watch list
Add to your watch list to receive emailed updates for this question. Too many emails? Change your settings >
10 People are following this question.

Related Questions

400:"User has multiple PO identifying region, asset type and subscription" error message

Download ESG Bulk data from CFS

SearchLight tool for funds

Issue while flattening the JSON file to CSV in RDP ESG Bulk

Mutual Fund Holdings - (S12)

  • Copyright
  • Cookie Policy
  • Privacy Statement
  • Terms of Use
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Alpha
  • App Studio
  • Block Chain
  • Bot Platform
  • Connected Risk APIs
  • DSS
  • Data Fusion
  • Data Model Discovery
  • Datastream
  • Eikon COM
  • Eikon Data APIs
  • Electronic Trading
    • Generic FIX
    • Local Bank Node API
    • Trading API
  • Elektron
    • EMA
    • ETA
    • WebSocket API
  • Intelligent Tagging
  • Legal One
  • Messenger Bot
  • Messenger Side by Side
  • ONESOURCE
    • Indirect Tax
  • Open Calais
  • Open PermID
    • Entity Search
  • Org ID
  • PAM
    • PAM - Logging
  • ProView
  • ProView Internal
  • Product Insight
  • Project Tracking
  • RDMS
  • Refinitiv Data Platform
    • Refinitiv Data Platform Libraries
  • Rose's Space
  • Screening
    • Qual-ID API
    • Screening Deployed
    • Screening Online
    • World-Check One
    • World-Check One Zero Footprint
  • Side by Side Integration API
  • TR Knowledge Graph
  • TREP APIs
    • CAT
    • DACS Station
    • Open DACS
    • RFA
    • UPA
  • TREP Infrastructure
  • TRKD
  • TRTH
  • Thomson One Smart
  • Transactions
    • REDI API
  • Velocity Analytics
  • Wealth Management Web Services
  • Workspace SDK
    • Element Framework
    • Grid
  • World-Check Data File
  • 中文论坛
  • Explore
  • Tags
  • Questions
  • Badges