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

# Get all tooltips

> Get the engagement tooltips of a project, newest first. Supports filtering by any field via query
parameters, plus `skip`, `limit` and `sort` (e.g. `sort=-createdAt`). `limit` defaults to 1000 when
omitted; when supplied, values above 100 are clamped to 100. Filtering by `project` or `organisation`
is rejected.



## OpenAPI

````yaml https://api.gleap.io/api-docs.json get /engagement/tooltips
openapi: 3.0.0
info:
  title: gleap-server
  version: 14.0.0
  contact: {}
servers:
  - url: https://api.gleap.io/v3
security: []
paths:
  /engagement/tooltips:
    get:
      tags:
        - Engagement Tooltip
      summary: Get all tooltips
      description: >-
        Get the engagement tooltips of a project, newest first. Supports
        filtering by any field via query

        parameters, plus `skip`, `limit` and `sort` (e.g. `sort=-createdAt`).
        `limit` defaults to 1000 when

        omitted; when supplied, values above 100 are clamped to 100. Filtering
        by `project` or `organisation`

        is rejected.
      operationId: GetTooltips
      parameters:
        - in: header
          name: project
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Ok
          content:
            application/json:
              schema: {}
      security:
        - jwt: []
components:
  securitySchemes:
    jwt:
      type: http
      scheme: bearer
      bearerFormat: JWT

````