---
title: "Unified search across companies, articles, funds, and projects"
url: "https://developer.argaam.com/apis/search-discovery-layer-api-sandbox-v1/versions/7b9c43fb-96d0-4164-9da6-4249bbd8ed0b/operations/getSearchGetSearchResult"
---

> Full API specification: https://developer.argaam.com/apis/search-discovery-layer-api-sandbox-v1/versions/7b9c43fb-96d0-4164-9da6-4249bbd8ed0b.md

# Unified search across companies, articles, funds, and projects

`GET` `/api/v1.1/search/get-search-result/{searchterm}/{marketid}/{languageid}/{type}/{pageno}/{limit}`

Operation ID: `getSearchGetSearchResult`

Cross-cutting free-text search across the Argaam catalog -- companies, news/articles, funds, and projects -- filtered by market and language, and paginated. ### Example ``` GET /api/v1.1/search/get-search-result/aramco/3/2/All/1/10 ```

## Path parameters

- `searchterm` (string, required) - Free-text search query.
- `marketid` (string, required) - Market ID(s) to scope the search to. Use GET /api/v1.1/markets to list valid values.
- `languageid` (integer, int32, required) - Language ID (e.g. 2 = English).
- `type` (string, required) - Result type filter (e.g. All, Company, Article, Fund, Project). Must be a recognized value -- unrecognized values return 404.
- `pageno` (integer, int32, required) - 1-based page number.
- `limit` (integer, int32, required) - Page size / max results to return.

## Responses

- `200` - Success

## OpenAPI definition

````yaml
openapi: 3.0.1
info:
  title: Search & Discovery Layer API
  version: v1.1
servers:
  - url: https://api-sandbox.argaam.com
    description: Argaam API Gateway (Sandbox)
paths:
  /api/v1.1/search/get-search-result/{searchterm}/{marketid}/{languageid}/{type}/{pageno}/{limit}:
    get:
      tags:
        - Search
      parameters:
        - name: searchterm
          in: path
          required: true
          schema:
            type: string
          example: aramco
          description: Free-text search query.
        - name: marketid
          in: path
          required: true
          schema:
            type: string
          example: "3"
          description: Market ID(s) to scope the search to. Use GET /api/v1.1/markets to
            list valid values.
        - name: languageid
          in: path
          required: true
          schema:
            type: integer
            format: int32
          example: 2
          description: Language ID (e.g. 2 = English).
        - name: type
          in: path
          required: true
          schema:
            type: string
          example: All
          description: Result type filter (e.g. All, Company, Article, Fund, Project).
            Must be a recognized value -- unrecognized values return 404.
        - name: pageno
          in: path
          required: true
          schema:
            type: integer
            format: int32
          example: 1
          description: 1-based page number.
        - name: limit
          in: path
          required: true
          schema:
            type: integer
            format: int32
          example: 10
          description: Page size / max results to return.
      responses:
        "200":
          description: Success
      summary: Unified search across companies, articles, funds, and projects
      description: "Cross-cutting free-text search across the Argaam catalog --
        companies, news/articles, funds, and projects -- filtered by market and
        language, and paginated.\r

        \            \r

        ### Example\r

        ```\r

        GET /api/v1.1/search/get-search-result/aramco/3/2/All/1/10\r

        ```"
      operationId: getSearchGetSearchResult
security:
  - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: apikey
````
