-
ADVFIL seems to be the function that returns the documents that most closely match our requirements,
Case - 16094320 Client's initial query: Hi, I was shown a while ago the app Signal Search to access the corporate publications for a given ticker. The list of publications it stores is good and that suits our needs. Taking this further, do you have a service that allows us to access these publications in bulk for 100s of…
-
Accessing Company Filings on Workspace via API
Is there an API that would allow me to programmatically download company filings from Workspace and access the full text of the filing documents for processing in Python? My use case is to run keyword-based searches (regex / NLP) across filings for multiple companies and flag documents that match predefined criteria.…
-
How to apply integrity check on financial filings downloaded files?
Hi Team, We are using https://api.refinitiv.com/data/filings/v1/retrieval/search/{identifier}/{value} API to get the signed URL to fetch actual file. We want to apply a integrity check to ensure that file is not tampered in transit. Can you please check and confirm what is the correct way to apply the same.
-
GraphQL API queries - Company Filings
Hi, We are currently working on company filings API to download reports of the companies based on OrganizationId. I would like to know if its possible to pass multiple OrganizationId as part of single graphql query. If yes, kindly share an example of the query. Thanks, Ajitha
-
Can you please help me with python code for downloading Annual reports, 10k etc
Can you please help me with python code for downloading Annual reports, 10k etc for a particular company via Refinitiv API.
-
Refinitiv Filings GraphQL Next Page
Request: {…
-
Refinitiv RDP Filings: Getting Filings by Searching for Market Company Identifier
From the Playground, I am able to see these 2 sample queries. I have a few questions: Is there are way to combine the 2 queries such I am able to use Legal Entity Identifiers/RIC/etc. to immediately get the filings? Or do we require a 2 step query? 2. How do I know/obtain the list of available identifierTypeName:…
-
Filings GraphQL Issue
Request/Query: { "query": "query AppleFilingsExistingSchemaOnly {\n FinancialFiling(\n filter: {\n FilingDocument: {\n Identifiers: {\n Cik: { EQ: \"0000320193\" }\n }\n }\n }\n limit: 5\n ) {\n ObjectId\n _metadata {\n identifier\n totalCount\n }\n FilingDocument {\n DocId\n FinancialFilingId\n Identifiers {\n Dcn\n }\n…
-
How to get historical (Semi-) Annual Reports for ETFs?
Hey, i am trying to find historical filings of etfs or their parent companies, no luck in the advanced filing section, anyone aware of any options? The overviews only show the latest documents.
-
Im trying to fetch information of filings via api, but get nan values
hi, Im trying to fetch information of filings via api, but get nan valuescould you help me on the correct way to get filings data via python api?i mostly care about filing type, date and time could you help me on the correct way to get filings data via python api?i mostly care about filing type, date and time end_date =…
-
Downloading Corporate Filings as .txt Files via API
For a research project, I need to download a large number of corporate filings (annual reports, interim reports) in English for an entire country (e.g., all companies based in the UK). The time period starts from the year 2000. Using the Advanced Filings Search works, but it’s extremely slow, and since the documents are…
-
Is there any API endpoint for company filings?
we have a client request? Is there any API endpoint for company filings? How to use and how to access? #Currently I just found this API Playground Could you please check and provide more details on this
-
Retrieving annual reports using LSEG API
For a research project, I would like to download the annual reports for a large set of European firms over the period 2010-2023 (following a similar approach as in this article: Global Evolution of Environmental and Social Disclosure in Annual Reports - Lin - 2024 - Journal of Accounting Research - Wiley Online Library).…
-
Advanced filling
I am experiencing an issue with the Advanced Filings function in LSEG Workspace. I have added all the companies into my Monitor, but when I try to search or filter filings within the Monitor, the system shows “no data was return.” I would like to confirm whether this is due to a missing step on my side or if it may be a…
-
why its not working ?
import os, time, pandas as pd import refinitiv.data as rd from refinitiv.data.content import filings as rfil CSV_FILE_PATH = "/Users/prince/Downloads/nwsheet.csv" COMPANY_NAME_COLUMN = "Company Name" COMPANY_ID_COLUMN = "Identifier" # RICs like AAPL.OQ, RELI.NS, etc. DOWNLOAD_DIR = "/Users/prince/Downloads/x" START_YEAR,…