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

# Get Name Request Status

> Check the status of a name change request for an entity. Returns the most recent request with its current status (pending, approved, or rejected).



## OpenAPI

````yaml get /entities/name-request
openapi: 3.1.0
info:
  title: Geogen API
  description: >-
    API for accessing LLM visibility data, managing entities, and tracking AI
    mentions.
  version: 1.0.0
servers:
  - url: https://api.geogen.io/v1
    description: Production server
security:
  - bearerAuth: []
paths:
  /entities/name-request:
    get:
      tags:
        - Entities
      summary: Get Name Request Status
      description: >-
        Check the status of a name change request for an entity. Returns the
        most recent request with its current status (pending, approved, or
        rejected).
      operationId: getNameRequestStatus
      parameters:
        - name: entityId
          in: query
          required: true
          schema:
            type: string
          description: The ID of the entity to check
      responses:
        '200':
          description: Request status returned
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  data:
                    type: object
                    nullable: true
                    description: The name change request, or null if none exists
                    properties:
                      id:
                        type: string
                        description: Request ID
                      currentName:
                        type: string
                        description: The entity's name when the request was made
                      suggestedName:
                        type: string
                        description: The suggested new name
                      reason:
                        type: string
                        nullable: true
                        description: Reason provided for the change
                      status:
                        type: string
                        enum:
                          - pending
                          - approved
                          - rejected
                        description: Current status of the request
                      createdAt:
                        type: number
                        description: Timestamp when the request was submitted
                      reviewedAt:
                        type: number
                        nullable: true
                        description: Timestamp when the request was reviewed
                      reviewNote:
                        type: string
                        nullable: true
                        description: Note from the admin reviewer
                  message:
                    type: string
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Entity not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: string
          description: Error message
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'API key authentication. Format: Bearer wsk_your_api_key'

````