question

Upvotes
Accepted
1 0 2 4

How to get market exchange name or code?

1. I'm Using http://api.trkd.thomsonreuters.com/api/Search2/Search2.svc/REST/Search2_1/Search_1

I want to find RIC for ISIN US0378331005 (Aapl) for Mund and MUNC exchanges separatly.

Is it possible to achive that?

my request body is

{
    "Search_Request_1":
    {
        "Collection":"SearchAll",
        "Paging":{"Top":2000,"Skip":0},
        "Filter":"ISIN in ('US0378331005') and ExchangeName eq 'MUN*'",
        "ResponseProperties":"ISIN,RIC,CUSIP,ExchangeCode, ExchangeName",
        "UnentitledAccess":true
    }
}

I recieve empty response:

{
    "Search_Response_1": {
        "ResultsHeader": {
            "FirstResult": 0,
            "LastResult": 0,
            "Results": 0,
            "TotalResults": 0
        }
    }
}


I'm using rkddemoappwm trial accout


rkd-api
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.

<AHS>

Contacted the RKD Online Solution team.

<AHS>

Contacted the RKD Online Solution team, again.

Hello @ostalcev

Thank you for your participation in the forum. Is the reply below satisfactory in resolving your query?


If so please can you click the 'Accept' text next to the appropriate reply? This will guide all community members who have a similar question.

Thanks,


AHS

Please be informed that a reply has been verified as correct in answering the question, and has been marked as such.

Thanks,
AHS

Upvotes
Accepted
24.6k 54 17 14

Hello @ostalcev

Sorry for the late reply. First of all, please be informed that the RKD API endpoint has been changed to api.rkd.refinitiv.com like the following example:

http://api.rkd.refinitiv.com/api/Search2/Search2.svc/REST/Search2_1/Search_1

Next, the RKD team suggests you use the following search filter to get Apple RIC on Munich Exchange.

{
"Search_Request_1": {
"Collection": "EquityQuotes",
"Filter": "IssueISIN eq 'US0378331005' and AssetCategory eq 'ORD' and ExchangeCode eq 'MUN'",
"ResponseProperties": "OAPermID,PrimaryRIC,RIC,IssueISIN,CommonName,ExchangeCode,ExchangeName,AssetCategoryName,RCSTRBC2012",
 "UnentitledAccess": true
}
}

rkd-search-api-3.png

Additionally, you can access the RKD API official page with your RKD credentials to find more detail about the RKD APIs usage such as API documents, interactive playground, etc.


rkd-search-api-3.png (110.2 KiB)
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.

Upvotes
1 0 2 4

Also for example i try

{
    "Search_Request_1": {
        "Collection": "SearchAll",
        "Paging": {
            "Top": 2000,
            "Skip": 0
        },
        "Filter": "ISIN in ('US0378331005')",
        "ResponseProperties": "ISIN,RIC,CUSIP,ExchangeCode, ExchangeName",
        "UnentitledAccess": true
    }
}

But I recive only

{
    "Search_Response_1": {
        "ResultsHeader": {
            "FirstResult": 1,
            "LastResult": 1,
            "Results": 1,
            "TotalResults": 1
        },
        "Results": {
            "Result": [
                {
                    "Property": [
                        {
                            "name": "ISIN",
                            "Value": "US0378331005"
                        },
                        {
                            "name": "RIC",
                            "Value": "AAPL.O"
                        },
                        {
                            "name": "CUSIP",
                            "Value": "037833100"
                        }
                    ]
                }
            ]
        }
    }
}


There is no RIC AAPL.DE, for example

AAPL.O is RIC related to another exchange board


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.

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.