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

# Get Developer Status

> Lightweight check: does the current user have an agent_developers row?

Used by the navbar to decide whether to show the developer-first dropdown.
Always 200 for authenticated users — distinguishes "not a developer" from
error states cleanly, unlike /me which 404s for non-developers.



## OpenAPI

````yaml /openapi.json get /api/v1/developers/me/status
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/developers/me/status:
    get:
      tags:
        - Developers
      summary: Get Developer Status
      description: >-
        Lightweight check: does the current user have an agent_developers row?


        Used by the navbar to decide whether to show the developer-first
        dropdown.

        Always 200 for authenticated users — distinguishes "not a developer"
        from

        error states cleanly, unlike /me which 404s for non-developers.
      operationId: get_developer_status_api_v1_developers_me_status_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
      security:
        - HTTPBearer: []
components:
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````