Skip to main content
GET
/
m-a
cURL
curl --request GET \
  --url https://www.leadsontrees.com/api/v1/m-a \
  --header 'x-lot-api-key: <api-key>'
import requests

url = "https://www.leadsontrees.com/api/v1/m-a"

headers = {"x-lot-api-key": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'x-lot-api-key': '<api-key>'}};

fetch('https://www.leadsontrees.com/api/v1/m-a', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://www.leadsontrees.com/api/v1/m-a",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
  CURLOPT_HTTPHEADER => [
    "x-lot-api-key: <api-key>"
  ],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://www.leadsontrees.com/api/v1/m-a"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("x-lot-api-key", "<api-key>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://www.leadsontrees.com/api/v1/m-a")
  .header("x-lot-api-key", "<api-key>")
  .asString();
require 'uri'
require 'net/http'

url = URI("https://www.leadsontrees.com/api/v1/m-a")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["x-lot-api-key"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "message": "OK",
  "params": {
    "category": [
      "Technology"
    ],
    "amount": null,
    "country": null,
    "status": null,
    "acquiring_company": null,
    "date_from": null,
    "date_to": null
  },
  "response": {
    "data": [
      {
        "investment_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
        "company_name": "TechStartup Inc",
        "acquired_by": "MegaCorp Solutions",
        "acquired_by_linkedin_url": "https://www.linkedin.com/company/megacorp-solutions",
        "acquired_by_company_info": {
          "name": "MegaCorp Solutions",
          "description": "A leading technology corporation specializing in enterprise software solutions.",
          "industry": "Software Development",
          "website": "https://www.megacorp.com",
          "size": "1,001-5,000 employees",
          "logo_url": "https://images.example.com/megacorp.png",
          "year_founded": 2010,
          "hq_country": "United States",
          "email": "[email protected]",
          "phone": "+1-555-123-4567",
          "keywords": [
            "enterprise software",
            "cloud computing",
            "business solutions"
          ],
          "specialities": [
            "Enterprise Solutions",
            "Cloud Architecture",
            "Business Intelligence"
          ],
          "categories": [
            "Technology",
            "Software",
            "Enterprise"
          ],
          "company_interested_in": [
            "Enterprise Software",
            "Cloud Services",
            "AI Consulting"
          ]
        },
        "name_path": "techstartup-inc",
        "description": "A leading technology company focused on innovative software solutions for enterprise customers.",
        "acquisition_amount": 50000000,
        "acquisition_percentage": 100,
        "main_category": "Technology",
        "company_info": {
          "name": "TechStartup Inc",
          "description": "A leading technology company focused on innovative software solutions for enterprise customers.",
          "industry": "Software Development",
          "website": "https://www.techstartup.com",
          "size": "51-200 employees",
          "logo_url": "https://images.example.com/techstartup.png",
          "year_founded": 2018,
          "hq_country": "United States",
          "email": "[email protected]",
          "phone": "+1-555-987-6543",
          "keywords": [
            "artificial intelligence",
            "machine learning",
            "automation",
            "cloud computing"
          ],
          "specialities": [
            "AI Development",
            "Cloud Architecture",
            "Enterprise Solutions"
          ],
          "categories": [
            "Technology",
            "Software",
            "AI/ML",
            "Enterprise"
          ],
          "company_interested_in": [
            "Enterprise Software",
            "Cloud Services",
            "AI Consulting"
          ]
        },
        "historical_headcount": [
          {
            "date": "2023-12-15T10:30:00",
            "headcount": 85,
            "growth": 0
          },
          {
            "date": "2024-01-15T10:30:00",
            "headcount": 92,
            "growth": 8.2
          },
          {
            "date": "2024-02-15T10:30:00",
            "headcount": 98,
            "growth": 6.5
          }
        ],
        "growth_info": {
          "growth_1m": 2.5,
          "growth_3m": 8.7,
          "growth_6m": 15.3,
          "growth_9m": 22.1,
          "growth_12m": 28.9
        },
        "contact_info": [
          {
            "employees": [
              {
                "name": "John Smith",
                "title": "Chief Executive Officer",
                "linkedin_url": "https://www.linkedin.com/in/johnsmith",
                "email": "[email protected]",
                "phone": "+1-555-987-6543",
                "date_started": "2023-01-15T09:00:00"
              },
              {
                "name": "Sarah Johnson",
                "title": "Chief Technology Officer",
                "linkedin_url": "https://www.linkedin.com/in/sarahjohnson",
                "email": "[email protected]",
                "phone": null,
                "date_started": "2023-03-01T09:00:00"
              }
            ],
            "company_linkedin_url": "https://www.linkedin.com/company/techstartup",
            "company_twitter_url": "https://twitter.com/techstartup",
            "company_facebook_url": "https://www.facebook.com/techstartup"
          }
        ],
        "date_seen": "2024-04-26T09:58:19.783000"
      },
      {
        "investment_id": "f7e8d9c1-b2a3-4567-890a-bcdef1234567",
        "company_name": "HealthTech Solutions",
        "acquired_by": "WellCare Industries",
        "acquired_by_linkedin_url": "https://www.linkedin.com/company/wellcare-industries",
        "acquired_by_company_info": {
          "name": "WellCare Industries",
          "description": "Healthcare technology company focused on improving patient outcomes through innovation.",
          "industry": "Healthcare Technology",
          "website": "https://www.wellcare.com",
          "size": "501-1,000 employees",
          "logo_url": "https://images.example.com/wellcare.png",
          "year_founded": 2012,
          "hq_country": "United States",
          "email": "[email protected]",
          "phone": "+1-555-234-5678",
          "keywords": [
            "healthcare",
            "medical devices",
            "patient care",
            "telemedicine"
          ],
          "specialities": [
            "Medical Technology",
            "Patient Management",
            "Healthcare Analytics"
          ],
          "categories": [
            "Healthcare",
            "Medical Devices",
            "Technology"
          ],
          "company_interested_in": [
            "Medical Equipment",
            "Healthcare Software",
            "Patient Management Systems"
          ]
        },
        "name_path": "healthtech-solutions",
        "description": "A healthcare technology company developing innovative solutions for patient monitoring and care management.",
        "acquisition_amount": 35000000,
        "acquisition_percentage": 100,
        "main_category": "Healthcare",
        "company_info": {
          "name": "HealthTech Solutions",
          "description": "A healthcare technology company developing innovative solutions for patient monitoring and care management.",
          "industry": "Healthcare Technology",
          "website": "https://www.healthtech.com",
          "size": "11-50 employees",
          "logo_url": "https://images.example.com/healthtech.png",
          "year_founded": 2019,
          "hq_country": "United States",
          "email": "[email protected]",
          "phone": "+1-555-876-5432",
          "keywords": [
            "patient monitoring",
            "healthcare analytics",
            "medical devices",
            "remote care"
          ],
          "specialities": [
            "Patient Monitoring",
            "Healthcare Analytics",
            "Medical Device Integration"
          ],
          "categories": [
            "Healthcare",
            "Medical Technology",
            "Software"
          ],
          "company_interested_in": [
            "Medical Equipment",
            "Healthcare Software",
            "Research Partnerships"
          ]
        },
        "historical_headcount": [
          {
            "date": "2023-12-01T10:30:00",
            "headcount": 32,
            "growth": 0
          },
          {
            "date": "2024-01-01T10:30:00",
            "headcount": 35,
            "growth": 9.4
          },
          {
            "date": "2024-02-01T10:30:00",
            "headcount": 38,
            "growth": 8.6
          }
        ],
        "growth_info": {
          "growth_1m": 5.6,
          "growth_3m": 18.8,
          "growth_6m": 26.7,
          "growth_9m": 35.7,
          "growth_12m": 46.2
        },
        "contact_info": [
          {
            "employees": [
              {
                "name": "Emily Davis",
                "title": "Chief Executive Officer",
                "linkedin_url": "https://www.linkedin.com/in/emilydavis",
                "email": "[email protected]",
                "phone": null,
                "date_started": "2023-06-01T09:00:00"
              },
              {
                "name": "Michael Chen",
                "title": "Head of Product",
                "linkedin_url": "https://www.linkedin.com/in/michaelchen",
                "email": "[email protected]",
                "phone": null,
                "date_started": "2023-08-15T09:00:00"
              }
            ],
            "company_linkedin_url": "https://www.linkedin.com/company/healthtech-solutions",
            "company_twitter_url": null,
            "company_facebook_url": "https://www.facebook.com/healthtechsolutions"
          }
        ],
        "date_seen": "2024-04-25T18:09:40.611000"
      }
    ]
  }
}
{
  "code": 123,
  "message": "<string>"
}
{
  "code": 429,
  "message": "Rate limit exceeded. Maximum 60 requests per minute."
}

Authorizations

x-lot-api-key
string
header
required

API key for M&A data API authentication

Query Parameters

amount
integer

Amount the acquiring company paid for the acquisition

Required range: x >= 0
category
string[]

Category of the companies

country
string

Country of the companies

website
string<uri>

Website of the companies

linkedin_url
string<uri>

Linkedin url of the companies

page
integer

Page number

Required range: x >= 1
date_from
string<date>

Start date (YYYY-MM-DD)

date_to
string<date>

End date (YYYY-MM-DD)

status
enum<string>

Deal status (e.g., announced, completed, pending)

Available options:
announced,
completed,
pending
acquiring_company
string

Name of the acquiring company

Response

M&A data response

message
string
required
Example:

"OK"

params
object
required
response
object
required