Search Signals Based On Company ID

GET /api/v2/company-signals/{INTELLIZENCE_COMPANY_ID} HTTP/1.1

Replace INTELLIZENCE_COMPANY_ID with the company id that you would like to get the signals

Parameters

ParamMandatoryDescription

startDate

Yes

Start Date (DD/MM/YYYY)

endDate

Yes

End Date (DD/MM/YYYY)

Response body

{
    "status": "status_code",
    "news": [
        {
            "_id": "new_id_1",
            "publisher": "news_publisher_1",
            "title": "new_title_1",
            "url": "new_url_1",
            "desc": "news_content_1",
            "publishDate": "news_published_date_1",
            "companyIds": ["Intellizence_company_id_1", "Intellizence_company_id_2"],
,           "companies": ["company_1", "company_2"],
            "triggerCodes": ["Intellizence_trigger_code_1", "Intellizence_trigger_code_2"],
            "triggers": ["trigger_1", "trigger_2"]
            "topics": ["topic_1", "topic_2"]
        }
    ]
}

Last updated