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

# List Account Opening Requests

> Retrieves a list of all account opening requests submitted through the registration process.

## Query Parameters

<ParamField query="created_after" type="string">
  Filters results to include only account opening requests created after the specified date.

  Example: `2025-10-01`
</ParamField>

<ParamField query="created_before" type="string">
  Filters results to include only account opening requests created before the specified date.

  Example: `2025-10-20`
</ParamField>

<ParamField query="status" type="string">
  Filters account opening requests by their current status. The accepted values are listed in the status enum section below.

  Allowed values: `active`, `canceled`, `closed`, `due_diligence_review`, `inactive`, `pending`
</ParamField>

<ParamField query="updated_after" type="string">
  Filters results to include only account opening requests updated after the specified date.

  Example: `2025-10-15`
</ParamField>

<ParamField query="updated_before" type="string">
  Filters results to include only account opening requests updated before the specified date.

  Example: `2025-10-28`
</ParamField>

## Response Body

<ResponseField name="array" type="array">
  Array of account opening requests

  <Expandable title="Request Object">
    <ResponseField name="id" type="string">
      Unique identifier of the account opening request
    </ResponseField>

    <ResponseField name="company" type="object">
      Company information

      <Expandable title="Company Details">
        <ResponseField name="legal_name" type="string">
          Company’s registered legal name
        </ResponseField>

        <ResponseField name="trade_name" type="string">
          Company’s trade name or business name
        </ResponseField>

        <ResponseField name="tax_id" type="string">
          Company’s tax identification number (CNPJ), numbers only
        </ResponseField>

        <ResponseField name="contacts" type="array">
          List of contact persons associated with the company. Each object represents a contact.

          <Expandable title="Contact">
            <ResponseField name="name" type="string">
              Full name of the contact person
            </ResponseField>

            <ResponseField name="email" type="string">
              Email address of the contact person
            </ResponseField>

            <ResponseField name="phone" type="string">
              Phone number including country and area code
            </ResponseField>

            <ResponseField name="tax_id" type="string">
              Contact’s individual tax ID (CPF), numbers only
            </ResponseField>

            <ResponseField name="role" type="string">
              Role within the company

              Allowed values: `administrator`, `legal_representative`, `financial`, `commercial`
            </ResponseField>
          </Expandable>
        </ResponseField>

        <ResponseField name="address" type="array">
          List of company addresses

          <Expandable title="Address">
            <ResponseField name="city" type="string">
              City name
            </ResponseField>

            <ResponseField name="state" type="string">
              State abbreviation (UF)
            </ResponseField>

            <ResponseField name="country" type="string">
              ISO 3166-1 alpha-2 country code
            </ResponseField>

            <ResponseField name="zip_code" type="string">
              Postal code (CEP), numbers only
            </ResponseField>

            <ResponseField name="street" type="string">
              Street or public place name
            </ResponseField>

            <ResponseField name="number" type="string">
              Address number
            </ResponseField>

            <ResponseField name="complement" type="string">
              Address complement, if any
            </ResponseField>
          </Expandable>
        </ResponseField>
      </Expandable>
    </ResponseField>

    <ResponseField name="status" type="string">
      Current status

      Values: `pending`, `due_diligence_review`, `active`, `inactive`, `canceled`, `closed`
    </ResponseField>

    <ResponseField name="status_history" type="array">
      History of status changes

      <Expandable title="Status History">
        <ResponseField name="status" type="string">
          Status value at that point
        </ResponseField>

        <ResponseField name="created_at" type="string">
          Timestamp of the status change
        </ResponseField>
      </Expandable>
    </ResponseField>

    <ResponseField name="account_id" type="integer">
      ID of the account linked after approval
    </ResponseField>

    <ResponseField name="created_at" type="string">
      Timestamp when the request was created
    </ResponseField>

    <ResponseField name="updated_at" type="string">
      Timestamp when the request was last updated
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json 200 OK theme={null}
  [
    {
      "id": "a1b2c3d4-e5f6-4789-801a-bcdef1234567",
      "company": {
        "legal_name": "Example Fictitious Corp",
        "trade_name": "Fictitious Solutions",
        "tax_id": "11111111000111",
        "contacts": [
          {
            "name": "John Doe",
            "email": "john.doe@example.com",
            "phone": "5511999999999",
            "tax_id": "12345678901",
            "role": "administrator"
          },
          {
            "name": "Jane Smith",
            "email": "jane.smith@example.com",
            "phone": "5511988888888",
            "tax_id": "98765432100",
            "role": "legal_representative"
          }
        ],
        "address": [
          {
            "city": "Example City",
            "state": "EX",
            "country": "BR",
            "zip_code": "00000000",
            "street": "Fictional Avenue",
            "number": "100",
            "complement": "Suite 101"
          }
        ]
      },
      "status": "active",
      "status_history": [
        {
          "status": "pending",
          "created_at": "2025-10-02T13:34:38.000Z"
        },
        {
          "status": "due_diligence_review",
          "created_at": "2025-10-03T09:15:12.000Z"
        }
      ],
      "account_id": 1001000,
      "created_at": "2025-10-02T13:34:05.000Z",
      "updated_at": "2025-10-03T10:22:44.000Z"
    }
  ]
  ```
</ResponseExample>
