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

# List Requests for Information

> Returns a paginated list of RFIs (Requests for Information) issued by providers for an entity. RFIs indicate additional data is needed to complete verification.



## OpenAPI

````yaml https://grid.squads.xyz/api-docs/openapi.json get /api/compliance/v1/entities/{id}/rfis
openapi: 3.1.0
info:
  title: Grid v1 API
  description: Grid v1 REST API for Solana-based smart account system
  contact:
    name: Grid API Support
    url: https://squads.so
    email: support@squads.so
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://grid.squads.xyz
    description: Production server
security:
  - bearer_auth: []
tags:
  - name: accounts
    description: Smart account management operations
  - name: spending-limits
    description: Spending limit management
  - name: standing-orders
    description: Standing order operations
  - name: transactions
    description: Transaction management
  - name: trade
    description: Trade operations and management
  - name: payments
    description: Payment intent operations
  - name: passkeys
    description: Passkey management
  - name: kyc
    description: Know Your Customer operations
  - name: external-accounts
    description: External bank account management
  - name: virtual-accounts
    description: Virtual account management
  - name: auth
    description: Authentication operations
  - name: proposals
    description: Proposal management for multi-sig operations
  - name: compliance
    description: Compliance entity management and KYB/KYC operations
paths:
  /api/compliance/v1/entities/{id}/rfis:
    get:
      tags:
        - compliance
      summary: List Requests for Information
      description: >-
        Returns a paginated list of RFIs (Requests for Information) issued by
        providers for an entity. RFIs indicate additional data is needed to
        complete verification.
      operationId: handler
      parameters:
        - name: id
          in: path
          description: Entity ID
          required: true
          schema:
            type: string
            format: uuid
        - name: x-grid-environment
          in: header
          description: Solana network environment (sandbox, devnet, mainnet)
          required: true
          schema:
            type: string
        - name: limit
          in: query
          description: Number of RFIs to return (1-100, default 20)
          required: false
          schema:
            type: integer
            format: int64
        - name: offset
          in: query
          description: Offset for pagination (default 0)
          required: false
          schema:
            type: integer
            format: int64
      responses:
        '200':
          description: List of RFIs for entity
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GridApiResponse_GetRfisResponsePayload'
        '400':
          description: Invalid query parameters
        '401':
          description: Unauthorized
        '404':
          description: Entity not found
        '500':
          description: Internal server error
      security:
        - bearer_auth: []
components:
  schemas:
    GridApiResponse_GetRfisResponsePayload:
      type: object
      required:
        - data
        - metadata
      properties:
        data:
          type: object
          required:
            - entity_id
            - rfis
            - total
            - limit
            - offset
          properties:
            entity_id:
              type: string
              format: uuid
              description: Entity identifier
            limit:
              type: integer
              format: int64
              description: Number of RFIs returned
            offset:
              type: integer
              format: int64
              description: Pagination offset
            rfis:
              type: array
              items:
                $ref: '#/components/schemas/GetRfisRfiItem'
              description: List of RFIs
            total:
              type: integer
              format: int64
              description: Total number of RFIs
        metadata:
          $ref: '#/components/schemas/Metadata'
    GetRfisRfiItem:
      type: object
      required:
        - id
        - provider
        - status
        - total_fields
        - available_fields
        - missing_fields
        - received_at
      properties:
        available_fields:
          type: integer
          format: int32
          description: Fields that have been provided
        due_at:
          type:
            - string
            - 'null'
          format: date-time
          description: RFI deadline
        id:
          type: string
          format: uuid
          description: RFI identifier
        missing_fields:
          type: integer
          format: int32
          description: Fields still required
        provider:
          type: string
          description: Provider that issued the RFI
        received_at:
          type: string
          format: date-time
          description: When the RFI was received
        resolved_at:
          type:
            - string
            - 'null'
          format: date-time
          description: When the RFI was resolved
        rfi_category:
          type:
            - string
            - 'null'
          description: RFI category
        rfi_code:
          type:
            - string
            - 'null'
          description: Provider-specific RFI code
        rfi_message:
          type:
            - string
            - 'null'
          description: Detailed RFI message
        status:
          $ref: '#/components/schemas/ConsumerRfiStatus'
          description: RFI status
        total_fields:
          type: integer
          format: int32
          description: Total data fields in this RFI
    Metadata:
      type: object
      required:
        - request_id
        - timestamp
      properties:
        request_id:
          type: string
        timestamp:
          type: string
          format: date-time
    ConsumerRfiStatus:
      type: string
      description: Status of a request for additional information.
      enum:
        - pending
        - in_progress
        - resolved
        - expired
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer
      description: Your Grid API key from the Grid Dashboard

````