Skip to main content
GET
/
api
/
public
/
checkout
/
fields

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

GET /api/public/checkout/fields

TypeScript Integration

import endpoints from '@/api/endpoints'

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