Lists identities with optional filters and pagination.
/identitiesHeaders
Bearer access token returned by the authentication endpoint.
The API key used for authentication when making requests to the API Gateway.
API version selector for Conomy endpoints. Use 24-04-2025 for the current version.
Identifies the application making the request.
Query parameters
Filters identities by type (USER or ORGANIZATION).
USERORGANIZATIONidentity email
identity document number
identity phone number
Filters identities by country code.
identity status
Specifies the maximum number of items to return in a single request.
A cursor indicating the position of the last retrieved item.
Responses
dataobject[]requiredAn array containing the list of retrieved identities based on the provided pagination parameters.
idstringUnique identifier for the internal service.
typestringUSERRepresents an individual with personal identifying information.ORGANIZATIONA legal entity such as a company, institution, or other juridical personnamestringThe name of the entity (for users) or the official name (for organizations).
nicknamestringAn alternative or preferred name for the entity.
emailstringemailThe email address associated with the entity.
phonestringthe phone number linked to the entity. Include +(phone country code)
documentNumberstringThe document number associated with the entity for identification purposes.
documentTypestringDocumeny type of the entity (e.g., RUT, CURP, CURL). Go to the Supported Identity document types page for the complete list of supported values.
idvstringIdentity verification reference
securityOptionsobjecttwoFactorAuthbooleanIndicates whether two-factor authentication is enabled
signTrxbooleanDetermines if the entity is required to sign transactions
signAccountsOperationsbooleanDetermines if the entity is required to sign account-related operations
accessControlobjectDashboard access control assigned to the identity
scopesobject[]requiredList of scopes
countrystringCountry of operations for the entity, specified using the ISO 3166-1 alpha-3 standard (e.g., CHL, USA, MEX). Go to the countries page for the complete list of supported values.
childrenobject[]A list of related entities (e.g., subsidiaries for organizations or dependent users
idstringrequiredID
namestringrequiredemailstringrequiredstatusstringThe current status of the entity. PENDING, PENDING_EMAIL_VALIDATION, PENDING_PHONE_VALIDATION, SCREENING, ACTIVE
externalIdstringExternal reference ID (client purpose).
lastnamestringThe last name of the user (if applicable).
bankAccountobjectSchema representing a bank account, including essential details about the account holder and financial institution.
idstringUnique identifier for the bank account.
externalIdstringExternal reference identifier for integrations.
accountNumberstringrequiredThe bank account number.
nicknamestringA friendly name assigned to the bank account.
bankstringrequiredThe name of the bank where the account is held.
currencystringrequiredSpecifies the currency used, following the ISO 4217 standard for fiat currencies (e.g., CLP, ARS, MXN). Go to the currencies page for the complete list of supported values.
typeAccountstringThe type of bank account. CHECKING_ACOUNT, SAVINGS
accountHolderstringrequiredThe full name of the account holder.
accountHolderDnistringrequiredThe national identification number or tax ID of the account holder.
countrystringrequiredCountry of operations for the entity, specified using the ISO 3166-1 alpha-3 standard (e.g., CHL, USA, MEX). Go to the countries page for the complete list of supported values.
createdAtstringdate-timeTimestamp indicating when the account was created.
updatedAtstringdate-timeTimestamp indicating the last update to the account details.
rulesobjectCustom rules or policies applicable to the entity.
genderstringGender information (if applicable
kycobjectInformation related to Know Your Customer (KYC) compliance
watchListobjectWatchlist information for compliance or fraud detection.
extendedDatastring[]Additional data.
createdAtstringdate-timeCreation date UTC format.
updatedAtstringdate-timeTime of last update made to the entity, UTC format.
addressobjectThe entity’s address information.
administrativeAreaLevel1stringThe first-level administrative division.
administrativeAreaLevel2stringThe second-level administrative division.
administrativeAreaLevel3stringThe third-level administrative division.
streetstringThe name of the street.
streetNumberstringThe street number.
optionalAddressstringAdditional address details.
countrystringCountry of operations for the entity, specified using the ISO 3166-1 alpha-3 standard (e.g., CHL, USA, MEX). Go to the countries page for the complete list of supported values.
zipcodestringZipcode f the address
paginationobjectrequiredAn object containing pagination metadata that helps navigate through the dataset.
paginationobjectrequiredCursor-based pagination metadata (limit, cursor, hasMore).
countintegerrequiredcount of items shown up to the moment
nextintegerrequirednext cursor to be used in offset to display the next page
previousintegerrequiredprevious cursor to be used in offset to display the previous page
totalintegerrequiredtotal count of items to be shown
resultsobject[]requiredItems from the current page
GET /sandbox/identities HTTP/1.1
Host: api.conomyhq.com
Authorization: Bearer {ACCESS_TOKEN}
x-api-key: {YOUR_API_KEY}
conomyhq-api-version: 24-04-2025
User-Agent: MyApp/1.0{
"data": [
{}
],
"pagination": {
"pagination": {
"count": 0,
"next": 0,
"previous": 0,
"total": 0
},
"results": [
{}
]
}
}