Fetch multiple EOR Contract forms

Retrieve paginated, versioned form definitions for creating EOR contracts for the specified countries. Use this endpoint when initializing or resuming a contract-creation flow to determine the required sections, fields, validation rules, and conditional logic per country (and optional contract type/locale). Always consume the latest effective version from the response and handle pagination. Not intended for reading or updating existing contracts. **Token scopes**: `forms:read`

Authentication

AuthorizationBearer
## Authentication Deel API uses API tokens to authenticate requests. A bearer token is required to authenticate all API requests. All API requests must be made over HTTPS. Calls made over plain HTTP will fail. API requests without authentication will also fail. ``` curl -X GET 'api.letsdeel.com/rest/v2/contracts' \ -H 'Authorization: Bearer YOUR-TOKEN-HERE' ``` ### Generating Access Tokens 1. Navigate to **Apps & Perks > Developer Center**. 2. Click on the “Generate New Token” button. 3. In the popup, click “Generate Token” button to generate a new token. Your newly generated token is visible on the screen. 4. Make sure to copy and save your token once is generated. You won't be able to see it again!
OR
AuthorizationBearer
Standard OAuth2 security scheme based on https://swagger.io/docs/specification/authentication/

Query parameters

limitintegerOptional1-10Defaults to 10
Maximum number of countries to return in a single response. Defaults to 10.
cursorstringOptional
Pagination cursor for fetching subsequent pages of results.

Request

Request body containing countries and optional parameters for bulk quote form fetching.
dataobjectRequired

Response

Successful response containing multiple form configuration data.
datalist of objects
Array of quote forms for the requested countries.
has_moreboolean
Indicates if there are more results available beyond the current page.
total_countinteger
Total number of countries in the request.
next_cursorstring or null
Cursor for fetching the next page of results. Null if no more results.

Errors