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

# KYB Status

> GET /v1/ramp/org/kyb/status — Get current KYB verification status for your organization

<Note>
  **Endpoint:** `GET https://api.rebelfi.io/v1/ramp/org/kyb/status`
</Note>

Get the current KYB (Know Your Business) verification status for your organization.

### Request Body

No request body required.

### Example Request

<CodeGroup>
  ```bash cURL theme={null}
  curl -X GET "https://api.rebelfi.io/v1/ramp/org/kyb/status" \
    -H "x-api-key: your_api_key"
  ```

  ```typescript SDK theme={null}
  const status = await client.ramp.getKybStatus();
  ```
</CodeGroup>

### Example Response

```json theme={null}
{
  "kybStatus": "approved",
  "applicationUrl": "https://kyb.provider.com/verify/abc123",
  "onrampAccount": null,
  "onrampAccounts": []
}
```

### Response Fields

| Field            | Type      | Description                                                                |
| ---------------- | --------- | -------------------------------------------------------------------------- |
| `kybStatus`      | `string`  | KYB verification status: `pending`, `submitted`, `approved`, or `declined` |
| `applicationUrl` | `string`  | URL to the KYB verification application                                    |
| `onrampAccount`  | `object?` | Primary on-ramp account (if provisioned)                                   |
| `onrampAccounts` | `array`   | List of all on-ramp accounts                                               |

<Info>
  Possible `kybStatus` values: `pending` (initiated, not yet submitted), `submitted` (under review), `approved` (verified), `declined` (verification failed).
</Info>
