Skip to main content
GET
https://api.sandbox.wepayout.com.br
/
v2
/
register
/
companies
List Account Opening Requests
curl --request GET \
  --url https://api.sandbox.wepayout.com.br/v2/register/companies \
  --header 'Authorization: Bearer <token>'
[
  {
    "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"
  }
]

Query Parameters

created_after
string
Filters results to include only account opening requests created after the specified date.Example: 2025-10-01
created_before
string
Filters results to include only account opening requests created before the specified date.Example: 2025-10-20
status
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
updated_after
string
Filters results to include only account opening requests updated after the specified date.Example: 2025-10-15
updated_before
string
Filters results to include only account opening requests updated before the specified date.Example: 2025-10-28

Response Body

array
array
Array of account opening requests
[
  {
    "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"
  }
]