Quick Examples

NOTE: Please note that in order to test the API Call from the examples, you would need to add your token after “token=” in the API call.

Get all M&A deals where a particular company was involved

Use case: You are interested in all M&A deals for “General Motors Corp” comapny. To get more details about the deals, which involve “General Motors Corp” follow the steps below:

  1. Find the company ID of “General Motors Corp” by using SearchCompanies/getListCompanies functionality. The company ID is 42974. API Call
    https://api.emis.com/dw//SearchCompanies/getListCompanies/?keyword=General%20Motors&countries=US&token=
    You can test this example in our interactive documentation with the following parameters:
    image
  2. Find in which M&A deals the company took part as “buyer” by using SearchDeal/getDeals functionality. API Call:
    https://api.emis.com/dw//SearchDeal/getDeals/?buyer=42974&token=
    You can test this example in our interactive documentation with the following parameters:
    image

Get all M&A deals where a particular legal advisor was involved

Use case:: You are interested in which M&A deals “Cohen & Grigsby” company was a legal advisor. To get more details about the deals, which involve “Cohen & Grigsby” follow the steps below:

  1. Find the legal advisor ID for “Cohen & Grigsby” by using SearchAdvisors/getListAdvisors functionality. The advisor ID is 10173. API Call:
    https://api.emis.com/dw//SearchAdvisors/getListAdvisors/?keyword=Cohen%20%26%20Grigsby&token=
    You can test this example in our interactive documentation with the following parameters:
    image
  2. Find the deals in which “Cohen & Grigsby” were legal advisors by using SearchDeal/getDeals functionality. API Call:
    https://api.emis.com/dw//SearchDeal/getDeals/?advisor=10173&token=
    You can test this example in our interactive documentation with the following parameters:
    image