---
title: "Get mergers and acquisitions deals for a market."
url: "https://developer.argaam.com/apis/ma-transactions-layer-api-sandbox-v1/versions/ac0c0654-e4ae-40b8-94c7-d40c86e963f2/operations/getMarketsByMarketIdMergersAcquisitions"
---

> Full API specification: https://developer.argaam.com/apis/ma-transactions-layer-api-sandbox-v1/versions/ac0c0654-e4ae-40b8-94c7-d40c86e963f2.md

# Get mergers and acquisitions deals for a market.

`GET` `/api/v1.1/markets/{marketId}/mergers-acquisitions`

Operation ID: `getMarketsByMarketIdMergersAcquisitions`

Returns a list of M&A transactions announced or completed by companies in the specified market, sorted newest-first. Each deal record includes: - Acquirer and target company names (Arabic + English) - Deal type (Acquisition, Merger, Stake purchase, Divestiture) - Transaction value in SAR (where disclosed) - Announcement and completion dates **Tip:** For the full deal record (description, closing conditions) use `GET /markets/mergers-acquisitions/{dealId}`. For M&A activity specific to one company use `GET /companies/{companyId}/mergers-acquisitions`.

## Path parameters

- `marketId` (integer, int32, required) - Market ID (e.g. `1` for Saudi Tadawul).

## Responses

- `200` - Success

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: M&A & Transactions Layer API
  version: v1.1
servers:
  - url: https://api-sandbox.argaam.com
    description: Argaam API Gateway (Sandbox)
paths:
  /api/v1.1/markets/{marketId}/mergers-acquisitions:
    get:
      tags:
        - Markets
      parameters:
        - name: marketId
          in: path
          required: true
          schema:
            type: integer
            format: int32
          description: Market ID (e.g. `1` for Saudi Tadawul).
          example: 3
      responses:
        "200":
          description: Success
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/ApiV1Response"
      summary: Get mergers and acquisitions deals for a market.
      description: "Returns a list of M&A transactions announced or completed by
        companies\r

        in the specified market, sorted newest-first.\r

        \            \r

        Each deal record includes:\r

        - Acquirer and target company names (Arabic + English)\r

        - Deal type (Acquisition, Merger, Stake purchase, Divestiture)\r

        - Transaction value in SAR (where disclosed)\r

        - Announcement and completion dates\r

        \             \r

        **Tip:** For the full deal record (description, closing conditions)
        use\r

        `GET /markets/mergers-acquisitions/{dealId}`.\r

        For M&A activity specific to one company use\r

        `GET /companies/{companyId}/mergers-acquisitions`."
      operationId: getMarketsByMarketIdMergersAcquisitions
security:
  - ApiKeyAuth: []
components:
  schemas:
    ApiV1Response:
      type: object
      properties:
        success:
          type: boolean
        apiVersion:
          type: string
          nullable: true
        timestamp:
          type: string
          format: date-time
        requestId:
          type: string
          nullable: true
        data:
          nullable: true
        meta:
          $ref: "#/components/schemas/ApiV1Meta"
        rateLimit:
          $ref: "#/components/schemas/ApiV1RateLimit"
      additionalProperties: false
    ApiV1Meta:
      type: object
      properties:
        page:
          type: integer
          format: int32
        pageSize:
          type: integer
          format: int32
        totalRecords:
          type: integer
          format: int32
        totalPages:
          type: integer
          format: int32
          readOnly: true
        hasNextPage:
          type: boolean
          readOnly: true
        hasPreviousPage:
          type: boolean
          readOnly: true
      additionalProperties: false
    ApiV1RateLimit:
      type: object
      properties:
        limit:
          type: integer
          format: int32
        remaining:
          type: integer
          format: int32
        reset:
          type: string
          format: date-time
      additionalProperties: false
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: apikey
```
