For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Creates a manual identity verification submission as a fallback when automated verification has failed multiple times or when the document’s country of issue is not supported by the automated solution.
Token scopes: worker:write
Authentication
AuthorizationBearer
## Authentication
The Deel API uses bearer tokens to authenticate requests. All API calls must be made over HTTPS — calls over plain HTTP or without authentication will fail.
```curl
curl -X GET 'https://api.letsdeel.com/rest/v2/contracts' \
-H 'Authorization: Bearer YOUR-TOKEN-HERE'
```
[Learn more about authentication](/api/authentication)
OR
AuthorizationBearer
Standard OAuth2 security scheme based on https://swagger.io/docs/specification/authentication/
Request
This endpoint expects a multipart form with multiple files.
backfileOptional
The back side of the document
frontfileRequired
The front side of the document
additionalfileOptional
An additional document
document_typeenumRequired
The type of document to be verified
Allowed values:
operation_typeenumRequired
The type of KYC operation to perform
Allowed values:
selfie_with_idfileRequired
A selfie of the user holding the ID document
document_countrystringOptional=2 characters
The issuing country code of the document to be verified (ISO 3166-1 alpha-2)
proof_of_residencefileOptional
A proof of residence document
translation_requiredbooleanRequired
Indicates whether the document requires translation
Response
Successful operation
dataobject
Errors
400
Bad Request Error
401
Unauthorized Error
403
Forbidden Error
404
Not Found Error
409
Conflict Error
500
Internal Server Error
Authentication
The Deel API uses bearer tokens to authenticate requests. All API calls must be made over HTTPS — calls over plain HTTP or without authentication will fail.
1
curl -X GET 'https://api.letsdeel.com/rest/v2/contracts' \