> ## 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 an entry

> Get one entry together with its pipeline, as `{ entry, pipeline }`. Also powers the ticket
sidebar's "Pipeline" panel and the board's entry route (…/entries/:entryId). 404 when the
entry isn't in this project.

MUST stay the LAST @Get of this controller: tsoa registers routes in
declaration order, and `{entryId}` declared above `for-record` would
swallow it (entryId = "for-record").



## OpenAPI

````yaml https://api.gleap.io/api-docs.json get /pipeline-entries/{entryId}
openapi: 3.0.0
info:
  title: gleap-server
  version: 14.0.0
  contact: {}
servers:
  - url: https://api.gleap.io/v3
security: []
paths:
  /pipeline-entries/{entryId}:
    get:
      tags:
        - Pipeline entries
      summary: Get an entry
      description: >-
        Get one entry together with its pipeline, as `{ entry, pipeline }`. Also
        powers the ticket

        sidebar's "Pipeline" panel and the board's entry route
        (…/entries/:entryId). 404 when the

        entry isn't in this project.


        MUST stay the LAST @Get of this controller: tsoa registers routes in

        declaration order, and `{entryId}` declared above `for-record` would

        swallow it (entryId = "for-record").
      operationId: GetOne
      parameters:
        - in: path
          name: entryId
          required: true
          schema:
            type: string
        - 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

````