> ## Documentation Index
> Fetch the complete documentation index at: https://docs.asobeast.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Apps that broke into the top 10 for tracked keywords



## OpenAPI

````yaml /api-reference/openapi.json get /apps/{id}/serp-movers
openapi: 3.0.0
info:
  title: asobeast API
  description: Self hosted ASO toolkit API
  version: 0.4.0
  contact: {}
servers:
  - url: http://localhost:3000/api/backend
    description: Web origin proxy
  - url: http://localhost:4000
    description: Direct API
security:
  - personalApiToken: []
tags: []
paths:
  /apps/{id}/serp-movers:
    get:
      tags:
        - rankings
      summary: Apps that broke into the top 10 for tracked keywords
      operationId: RankingsController_serpMovers
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
        - name: days
          required: true
          in: query
          schema:
            minimum: 1
            maximum: 30
            default: 7
            allOf:
              - $ref: '#/components/schemas/Object'
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
components:
  schemas:
    Object:
      type: object
      properties: {}
  securitySchemes:
    personalApiToken:
      scheme: bearer
      bearerFormat: asob
      type: http

````