---
title: "Get top-moving funds"
url: "https://developer.argaam.com/apis/investment-funds-layer-api-sandbox-v1/versions/94c20942-c853-422b-a599-443e26d612fb/operations/getFundsMovers"
---

> Full API specification: https://developer.argaam.com/apis/investment-funds-layer-api-sandbox-v1/versions/94c20942-c853-422b-a599-443e26d612fb.md

# Get top-moving funds

`GET` `/api/v1.1/funds/movers`

Operation ID: `getFundsMovers`

Returns the funds with the largest net asset value change over the selected period.

## Responses

- `200` - Success

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Investment Funds Layer API
  version: v1.1
servers:
  - url: https://api-sandbox.argaam.com
    description: Argaam API Gateway (Sandbox)
paths:
  /api/v1.1/funds/movers:
    get:
      tags:
        - Funds
      responses:
        "200":
          description: Success
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/FundsMovers"
      summary: Get top-moving funds
      description: Returns the funds with the largest net asset value change over the
        selected period.
      operationId: getFundsMovers
      parameters: []
security:
  - ApiKeyAuth: []
components:
  schemas:
    FundsMovers:
      type: object
      properties:
        gainers:
          type: array
          items:
            $ref: "#/components/schemas/FundMovers"
          nullable: true
        losers:
          type: array
          items:
            $ref: "#/components/schemas/FundMovers"
          nullable: true
      additionalProperties: false
    FundMovers:
      type: object
      properties:
        fundValueID:
          type: integer
          format: int32
        fundManagerID:
          type: integer
          format: int32
        fundID:
          type: integer
          format: int32
        valueDate:
          type: string
          format: date-time
          nullable: true
        unitPrice:
          type: number
          format: double
          nullable: true
        netAssetValue:
          type: number
          format: double
          nullable: true
        ytd:
          type: number
          format: double
          nullable: true
        createdOn:
          type: string
          format: date-time
          nullable: true
        createdByID:
          type: integer
          format: int32
          nullable: true
        lastModifiedOn:
          type: string
          format: date-time
          nullable: true
        lastModifiedBy:
          type: integer
          format: int32
          nullable: true
        fundNameAr:
          type: string
          nullable: true
        fundNameEn:
          type: string
          nullable: true
        assetTypeNameAr:
          type: string
          nullable: true
        assetTypeNameEn:
          type: string
          nullable: true
        currencyNameAr:
          type: string
          nullable: true
        currencyNameEn:
          type: string
          nullable: true
        totalRecords:
          type: integer
          format: int32
        nav:
          type: integer
          format: int64
          nullable: true
      additionalProperties: false
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: apikey
```
