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

# Get Checkout Fields

> Returns the configured form fields for the sign-up checkout flow.

# Get Checkout Fields

Returns the list of form fields configured by the operator for the sign-up/checkout process. Used to dynamically render the sign-up form with required, optional, and custom fields.

## Authentication

No authentication required.

## Response

Returns an object describing the available checkout form fields and their configuration.

## Examples

### Fetch checkout fields

```http theme={null}
GET /api/public/checkout/fields
```

## TypeScript Integration

```typescript theme={null}
import endpoints from '@/api/endpoints'

const response = await httpClient.get(endpoints.checkout.fields)
```
