{
  "openapi": "3.1.0",
  "info": {
    "title": "Acquisitions API",
    "version": "1.0.0",
    "summary": "Acquisitions in data infrastructure, analytics, AI and agents since 2007: acquirer, target, announcement date, price where disclosed, category and a source link for every deal",
    "description": "Acquisitions in data infrastructure, analytics, AI and agents since 2007: acquirer, target, announcement date, price where disclosed, category and a source link for every deal. New deals every weekday, 07:05 UTC. Free to read; please cite \"Acquisitions (acquisitions.fru.dev)\" with a link. Responses are cached at the edge; keep to about 60 requests a minute. Guide: https://acquisitions.fru.dev/agents",
    "contact": {
      "name": "fru.dev",
      "url": "https://fru.dev",
      "email": "fru.dev3@gmail.com"
    }
  },
  "externalDocs": {
    "description": "For AI agents",
    "url": "https://acquisitions.fru.dev/agents"
  },
  "servers": [
    {
      "url": "https://acquisitions.fru.dev"
    }
  ],
  "paths": {
    "/api/deals": {
      "get": {
        "operationId": "list_deals",
        "summary": "Acquisitions, newest first, optionally filtered",
        "description": "Acquisitions, newest first, optionally filtered. Returns deals with acquirer, target, announcement date, price in USD millions (null when undisclosed), category, source URL and a verified flag.",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "required": false,
            "description": "Words in the acquirer or target name",
            "schema": {
              "type": "string"
            },
            "example": "snowflake"
          },
          {
            "name": "company",
            "in": "query",
            "required": false,
            "description": "Company slug, as buyer or target (see /api/companies/{slug})",
            "schema": {
              "type": "string"
            },
            "example": "databricks"
          },
          {
            "name": "year",
            "in": "query",
            "required": false,
            "description": "Announcement year",
            "schema": {
              "type": "integer"
            },
            "example": 2026
          },
          {
            "name": "category",
            "in": "query",
            "required": false,
            "description": "One category",
            "schema": {
              "type": "string",
              "enum": [
                "Artificial Intelligence",
                "Data & Analytics",
                "Cloud Infrastructure",
                "Cybersecurity",
                "Fintech",
                "Other"
              ]
            }
          },
          {
            "name": "min_price",
            "in": "query",
            "required": false,
            "description": "Only deals with a disclosed price of at least this many USD millions",
            "schema": {
              "type": "integer"
            },
            "example": 1000
          },
          {
            "name": "limit",
            "in": "query",
            "required": false,
            "description": "Items per page, 1 to 200",
            "schema": {
              "type": "integer",
              "minimum": 1,
              "maximum": 200,
              "default": 200
            }
          },
          {
            "name": "offset",
            "in": "query",
            "required": false,
            "description": "Items to skip, for the next page",
            "schema": {
              "type": "integer",
              "minimum": 0,
              "default": 0
            }
          }
        ],
        "responses": {
          "200": {
            "description": "deals with acquirer, target, announcement date, price in USD millions (null when undisclosed), category, source URL and a verified flag",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                },
                "example": {
                  "deals": [
                    {
                      "id": "nvidia-hugging-face",
                      "acquirer": "NVIDIA",
                      "acquirer_slug": "nvidia",
                      "target": "Hugging Face",
                      "target_slug": "hugging-face",
                      "date": "2026-09-03",
                      "price_usd_millions": 12930,
                      "category": "Artificial Intelligence",
                      "description": "Hugging Face runs the leading open platform for hosting AI models, datasets and apps, giving NVIDIA direct distribution to millions of AI...",
                      "source_url": "https://blogs.nvidia.com/blog/nvidia-to-acquire-hugging-face/",
                      "verified": true,
                      "url": "https://acquisitions.fru.dev/deal/nvidia-hugging-face"
                    },
                    {
                      "id": "qualcomm-modular",
                      "acquirer": "Qualcomm",
                      "acquirer_slug": "qualcomm",
                      "target": "Modular",
                      "target_slug": "modular",
                      "date": "2026-06-24",
                      "price_usd_millions": 3900,
                      "category": "Artificial Intelligence",
                      "description": "Modular builds an AI-native software platform for running generative AI inference across different chips, giving Qualcomm a silicon-agnos...",
                      "source_url": "https://investor.qualcomm.com/news-events/press-releases/news-details/2026/Qualcomm-to-Acquire-Modular/default.aspx",
                      "verified": false,
                      "url": "https://acquisitions.fru.dev/deal/qualcomm-modular"
                    }
                  ],
                  "total": 4,
                  "limit": 3,
                  "offset": 0,
                  "next": "/api/deals?year=2026&min_price=1000&limit=3&offset=3"
                }
              }
            }
          }
        }
      }
    },
    "/api/deals/{id}": {
      "get": {
        "operationId": "get_deal",
        "summary": "One acquisition by its id",
        "description": "One acquisition by its id. Returns the deal with its description, source URL and page URL.",
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "description": "Deal id from list_deals",
            "schema": {
              "type": "string"
            },
            "example": "salesforce-informatica"
          }
        ],
        "responses": {
          "200": {
            "description": "the deal with its description, source URL and page URL",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                },
                "example": {
                  "deal": {
                    "id": "salesforce-informatica",
                    "acquirer": "Salesforce",
                    "acquirer_slug": "salesforce",
                    "target": "Informatica",
                    "target_slug": "informatica",
                    "date": "2024-04-12",
                    "price_usd_millions": null,
                    "category": "Data & Analytics",
                    "description": "Data integration platform talks (Note: Deal status reflects market interest)",
                    "source_url": null,
                    "verified": true,
                    "url": "https://acquisitions.fru.dev/deal/salesforce-informatica"
                  }
                }
              }
            }
          },
          "404": {
            "description": "Not found"
          }
        }
      }
    },
    "/api/companies/{slug}": {
      "get": {
        "operationId": "company_deals",
        "summary": "Every deal a company made or was part of",
        "description": "Every deal a company made or was part of. Returns the company name, its acquisitions as buyer and the deal that bought it, if any.",
        "parameters": [
          {
            "name": "slug",
            "in": "path",
            "required": true,
            "description": "Company slug, the companies.fru.dev registry slug (lowercase, hyphens)",
            "schema": {
              "type": "string"
            },
            "example": "databricks"
          }
        ],
        "responses": {
          "200": {
            "description": "the company name, its acquisitions as buyer and the deal that bought it, if any",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                },
                "example": {
                  "company": {
                    "slug": "databricks",
                    "name": "Databricks",
                    "url": "https://acquisitions.fru.dev/companies/databricks",
                    "profile": "https://companies.fru.dev/companies/databricks"
                  },
                  "acquisitions": [
                    {
                      "id": "databricks-electric",
                      "acquirer": "Databricks",
                      "acquirer_slug": "databricks",
                      "target": "Electric",
                      "target_slug": "electric",
                      "date": "2026-08-12",
                      "price_usd_millions": null,
                      "category": "Data & Analytics",
                      "description": "Electric builds PGlite, a WebAssembly build of Postgres, and a real-time sync engine, giving Databricks lightweight embedded databases an...",
                      "source_url": "https://www.databricks.com/blog/electric-joins-databricks-bring-wasm-postgres-ai-agent-sandboxes",
                      "verified": true,
                      "url": "https://acquisitions.fru.dev/deal/databricks-electric"
                    },
                    {
                      "id": "databricks-antimatter",
                      "acquirer": "Databricks",
                      "acquirer_slug": "databricks",
                      "target": "Antimatter",
                      "target_slug": "antimatter",
                      "date": "2026-03-24",
                      "price_usd_millions": null,
                      "category": "Data & Analytics",
                      "description": "Antimatter built a \"data control plane\" for deploying AI agents while protecting sensitive enterprise data, giving Databricks the technol...",
                      "source_url": "https://www.databricks.com/company/newsroom/press-releases/databricks-enters-security-market-launch-lakewatch-new-agentic-siem",
                      "verified": true,
                      "url": "https://acquisitions.fru.dev/deal/databricks-antimatter"
                    }
                  ],
                  "acquired_by": null
                }
              }
            }
          },
          "404": {
            "description": "Not found"
          }
        }
      }
    },
    "/api/search": {
      "get": {
        "operationId": "search",
        "summary": "Search companies and deals",
        "description": "Search companies and deals. Returns up to 20 ranked results with title, link and one line.",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "required": true,
            "description": "Company name or words",
            "schema": {
              "type": "string"
            },
            "example": "wiz"
          },
          {
            "name": "limit",
            "in": "query",
            "required": false,
            "description": "Results, 1 to 20",
            "schema": {
              "type": "integer",
              "minimum": 1,
              "maximum": 20,
              "default": 20
            }
          }
        ],
        "responses": {
          "200": {
            "description": "up to 20 ranked results with title, link and one line",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                },
                "example": {
                  "q": "wiz",
                  "results": [
                    {
                      "id": "co:wiz",
                      "group": "companies",
                      "title": "Wiz",
                      "subtitle": "Acquired by Google",
                      "href": "/companies/wiz",
                      "keywords": [
                        "wiz",
                        "wiz.io"
                      ],
                      "logo": "https://img.logo.dev/wiz.io?token=...&size=64&format=png&theme=light&retina=true&fallback=404",
                      "boost": 0,
                      "score": 1050
                    },
                    {
                      "id": "deal:google-wiz",
                      "group": "items",
                      "title": "Google buys Wiz",
                      "subtitle": "Mar 18, 2025 · $23B · Cybersecurity",
                      "href": "/deal/google-wiz",
                      "keywords": [
                        "Wiz",
                        "Google"
                      ],
                      "logo": "https://img.logo.dev/wiz.io?token=...&size=64&format=png&theme=light&retina=true&fallback=404",
                      "score": 975
                    }
                  ]
                }
              }
            }
          }
        }
      }
    }
  }
}