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

# List License Requests

> Licence applications and renewals Turris is running for you

Returns the licence requests raised for your entities and producers: new applications and renewals, with their current status.

Each row names the entity or producer it is for through `entityType` and `entityId`, so one list covers both.

<Note>
  This surface is read-only. Requests are raised and progressed in the Turris agency application; there is no endpoint here that starts, pays for or submits one.
</Note>


## OpenAPI

````yaml openapi/v2.json GET /v2/downstream/license-requests
openapi: 3.0.0
info:
  title: Turris Public API
  description: API for managing insurance compliance data
  version: 2.0.0
  contact: {}
servers:
  - url: https://public.api.live.turrisfi.com
    description: Production
  - url: https://public.api.sandbox.turrisfi.com
    description: Sandbox
security: []
tags: []
paths:
  /v2/downstream/license-requests:
    get:
      tags:
        - downstream/license-requests
      summary: List license requests
      description: >-
        Returns the license applications filed by your organization: new
        licenses, renewals, line-of-authority changes and address changes, for
        both your entities and your producers. Narrow with downstreamEntityId,
        status, requestCategory or holderType. Results are paginated, newest
        first.
      operationId: LicenseRequestsController_getLicenseRequests_v2
      parameters:
        - name: page
          required: false
          in: query
          description: 1-based page number
          schema:
            minimum: 1
            default: 1
            example: 1
            type: number
        - name: limit
          required: false
          in: query
          description: Page size (max 100)
          schema:
            minimum: 1
            maximum: 100
            default: 50
            example: 50
            type: number
        - name: downstreamEntityId
          required: false
          in: query
          description: >-
            Narrow the results to a single entity in your organization. Defaults
            to your whole subtree (your entity plus every branch beneath it).
            Returns 404 if the id is not in your subtree.
          schema:
            example: 6610b3d2c2e0a51b8c0d1f02
            type: string
        - name: status
          required: false
          in: query
          description: Request status
          schema:
            example: submitted
            type: string
            enum:
              - pending
              - submitting
              - submitted
              - completed
              - failed
              - submission failed
              - rejected
              - canceled
              - archived
        - name: requestCategory
          required: false
          in: query
          description: What the request is for
          schema:
            example: renewal
            type: string
            enum:
              - new
              - renewal
              - loa change
              - address change
        - name: holderType
          required: false
          in: query
          description: Whether the applicant is an agency entity or a producer
          schema:
            example: producer
            type: string
            enum:
              - entity
              - producer
      responses:
        '200':
          description: A page of license requests
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      items:
                        type: array
                        items:
                          $ref: >-
                            #/components/schemas/DownstreamLicenseRequestResponse
                      total:
                        type: integer
                        description: Total rows matching the query across all pages
                        example: 137
                      page:
                        type: integer
                        description: 1-based page number
                        example: 1
                      limit:
                        type: integer
                        description: Page size
                        example: 50
                      totalPages:
                        type: integer
                        description: Number of pages, or 0 when there are no rows
                        example: 3
                    required:
                      - items
                      - total
                      - page
                      - limit
                      - totalPages
                  requestId:
                    type: string
                    description: Unique request identifier
                    example: dev-2c5e7cf2-9acf-4c8c-ab2f-b81f39d775a8
                  timestamp:
                    type: string
                    description: Response timestamp
                    example: '2025-11-12T20:49:03.293Z'
                required:
                  - data
                  - requestId
                  - timestamp
        '400':
          description: Invalid query parameters
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponseDto'
        '401':
          description: Invalid or missing auth token
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponseDto'
        '403':
          description: Your organization is not entitled to the public API
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponseDto'
        '404':
          description: downstreamEntityId is not in your organization
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponseDto'
components:
  schemas:
    DownstreamLicenseRequestResponse:
      type: object
      properties:
        licenseRequestId:
          type: string
          description: Unique identifier of the request
          example: 6627f2b5c2e0a51b8c0d4e7c
        requestReference:
          type: string
          description: The human-readable reference NIPR and support conversations use
          example: REQ-2026-000123
        groupId:
          type: string
          description: >-
            The renewal batch this request was submitted under, when it was part
            of one
          example: 6627f2b5c2e0a51b8c0d4e90
        holderType:
          type: string
          description: Whether an agency entity or a producer is applying
          enum:
            - entity
            - producer
          example: producer
        holderId:
          type: string
          description: The applying entity or producer
          example: 6627f2b5c2e0a51b8c0d4e7c
        holderName:
          type: string
          description: Name of the applicant
          example: Jon Doe
        downstreamEntityId:
          type: string
          description: The agency that submitted the request
          example: 6610b3d2c2e0a51b8c0d1f02
        stateCode:
          type: string
          description: State or territory applied to
          enum:
            - AL
            - AK
            - AZ
            - AR
            - CA
            - CO
            - CT
            - DE
            - FL
            - GA
            - HI
            - ID
            - IL
            - IN
            - IA
            - KS
            - KY
            - LA
            - ME
            - MD
            - MA
            - MI
            - MN
            - MS
            - MO
            - MT
            - NE
            - NV
            - NH
            - NJ
            - NM
            - NY
            - NC
            - ND
            - OH
            - OK
            - OR
            - PA
            - RI
            - SC
            - SD
            - TN
            - TX
            - UT
            - VT
            - VA
            - WA
            - WV
            - WI
            - WY
            - GU
            - PR
            - VI
            - DC
          example: PA
        requestCategory:
          type: string
          description: What the request is for
          enum:
            - new
            - renewal
            - loa change
            - address change
          example: renewal
        status:
          type: string
          description: Request status
          enum:
            - pending
            - submitting
            - submitted
            - completed
            - failed
            - submission failed
            - rejected
            - canceled
            - archived
          example: submitted
        licenseClassCode:
          type: string
          description: License class code
          example: '10'
        licenseClassName:
          type: string
          description: License class name
          example: Producer
        licenseNumber:
          type: string
          description: The license being renewed or changed
          example: '1234567'
        npn:
          type: string
          description: The NPN the request was filed against
          example: '1234567'
        linesOfAuthority:
          description: Lines of authority requested
          type: array
          items:
            $ref: >-
              #/components/schemas/DownstreamLicenseRequestLineOfAuthorityResponse
        feeAmount:
          type: number
          description: Fee the state quoted, in the smallest currency unit
          example: 5500
        niprTransactionId:
          type: string
          description: NIPR's own transaction id
          example: TX-889900
        niprConfirmationNumber:
          type: string
          description: NIPR confirmation number
          example: CONF-556677
        licenseExpirationDate:
          type: string
          description: ISO 8601 expiry of the license being renewed
          example: '2027-04-01T00:00:00.000Z'
        requestedAt:
          type: string
          description: ISO 8601 timestamp the request was created
          example: '2026-01-15T10:30:00.000Z'
        submittedAt:
          type: string
          description: >-
            ISO 8601 timestamp the request reached NIPR. Absent while it is
            still being prepared.
          example: '2026-01-15T10:35:00.000Z'
      required:
        - licenseRequestId
        - requestReference
        - holderType
        - holderId
        - downstreamEntityId
        - stateCode
        - requestCategory
        - status
        - licenseClassCode
        - licenseClassName
        - linesOfAuthority
        - requestedAt
    ErrorResponseDto:
      type: object
      properties:
        statusCode:
          type: number
          description: HTTP status code
        requestId:
          type: string
          description: Unique request identifier for debugging
        errorType:
          type: string
          description: >-
            Machine-readable error classification. Branch on this rather than on
            `errorMessage`, which is prose and may change. Authentication
            failures returned by our identity provider are forwarded verbatim,
            so a 401 can carry a code outside this list; treat an unrecognised
            value as a generic failure of its HTTP status.
          enum:
            - conflict
            - contact_not_authorized
            - document_exceeds_page_limit
            - downstream_entity_member_exists
            - duplicate_external_id_error
            - duplicate_member_email
            - duplicate_producer_code_error
            - forbidden
            - gateway_timeout
            - inactive_email
            - internal_server_error
            - invalid_email
            - invalid_email_for_invites
            - invalid_organization_category
            - invalid_organization_slug
            - invalid_phone_number
            - invalid_token
            - invite_limit_reached
            - jwt_invalid
            - m2m_client_not_found
            - not_found
            - organization_already_exists
            - organization_slug_already_used
            - payment_required
            - producer_agreement_required
            - product_feature_subscription_required
            - service_unavailable
            - session_authorization_error
            - some_custom_error_string
            - throttled
            - too_many_requests
            - unauthorized
            - unauthorized_client
            - unexpected_400_stytch_error
            - unexpected_403_stytch_error
            - unexpected_404_stytch_error
            - unexpected_error
            - unexpected_stytch_error
            - unprocessable_entity
            - validation_error
          example: validation_error
        errorMessage:
          description: Array of error messages
          type: array
          items:
            type: string
        timestamp:
          type: string
          description: ISO timestamp when the error occurred
        details:
          type: object
          description: Additional error context
      required:
        - statusCode
        - requestId
        - errorType
        - errorMessage
        - timestamp
    DownstreamLicenseRequestLineOfAuthorityResponse:
      type: object
      properties:
        code:
          type: string
          description: Line-of-authority code
          example: '16'
        name:
          type: string
          description: Line-of-authority name
          example: Property
      required:
        - code
        - name

````

## Related topics

- [List License Renewal Batches](/api-reference/v2/downstream/license-requests/license-request-groups.md)
- [List Entity Licenses](/api-reference/v2/downstream/licenses/entity-licenses.md)
- [List Producer Licenses](/api-reference/v2/downstream/licenses/producer-licenses.md)
