/identityFind by item
Recovers identity of an item if available
Parameters
Query Parameters
| Name | Type |
|---|---|
itemIdrequired | string (uuid) |
Responses
Response with details personal information related to the owner of the connection's account
The ID of the identity to retrieve
Identifier of the item linked to the identity
Date of birth
The tax ID (CNPJ) associated with the business account
Primary document that identifies the owner
Type of document collected
Profession or Job information
Name of the owner of the account
Establishment code (only for PAYMENT_ACCOUNT connectors)
Name of the establishment (only for PAYMENT_ACCOUNT connectors)
For business connector, the name of the business
List of phone numbers related to the account
The phone number object contains data related to contact information.
List of email addresses related to the account
The email object contains emails associated with the owner of the account
List of addresses related to the account
The address object contains data related to an specific owner's location.
List of names related to the account
The relation object contains name and relation to the owner of the account
Is a rating that indicates the investor personality and motivation for investing
Information that allows understanding since when the consulted person has been a client of the institution, as well as an indicator of the products and services they currently consume and their representatives
CNPJ of the company
Occupation code
Free-text occupation description. When occupationCode is RECEITA_FEDERAL or CBO it holds the standardized list code; when OUTRO it describes the occupation in cases where the institution does not follow the Receita Federal nor the CBO list
Informed income
Informed patrimony
List of CNAE codes describing the economic activities of the business (Brazilian National Classification of Economic Activities). Only one entry per response should be marked as main
Revenue (faturamento) informed by the business — the business equivalent of informedIncome
Information that allows institutions to assess, evaluate, characterize, and classify the client with the purpose of understanding their risk profile and their economic-financial capacity
Date when the relationship with the institution started
List of products and services that the client consumes
Additional info about the products and services. Populated when productsServicesType includes 'OUTROS'
List of procurators of the client
List of accounts of the client with valid consent. Only accounts that have explicit user consent are returned.
Salary portabilities received by the institution from the client's previous paycheck banks (banco-folha). PF-only field
Paycheck-bank (banco-folha) links to employers, active or formerly active. PF-only field
Social name of the natural person, if any (the name by which travestis and transsexuals recognize themselves and are recognized in their community). PF-only field
Sex of the natural person. PF-only field
Marital status of the natural person. PF-only field
Marital status of the natural person
Nationality of the natural person. PF-only field
Nationality of the natural person
List of other identification documents the natural person holds. PF-only field
Other identification document held by the natural person. Brazilian acronyms are kept verbatim; OTHER covers any other type
Passport metadata for the natural person. PF-only field
Passport metadata for the natural person. Applies when the client is a non-resident not required to register a CPF
Date the business was incorporated. PJ-only field
Partners and administrators of the business. PJ-only field
Partner or administrator of a business. Partners with less than 25% shareholding may be omitted by the institution
List of additional documents for businesses headquartered abroad and not required to register a CNPJ. PJ-only field
Additional document for businesses headquartered abroad and not required to register a CNPJ
CNPJs of the financial institutions responsible for the customer cadastro. Numbers only, no mask
Example response
{
"id": "42888436-62f5-49d2-8cf9-e312c7939509",
"fullName": "Francisco Sousa",
"companyName": "Pluggy Inc.",
"document": "076.630.975-48",
"taxNumber": "38.512.121/0001-95",
"documentType": "CPF",
"jobTitle": "Comercial",
"birthDate": "1991-05-01T00:00:00.000Z",
"establishmentCode": "001",
"establishmentName": "Pluggy Establishment",
"addresses": [
{
"fullAddress": "Av. Lúcio Costa 1234, Copacabana, Rio de Janeiro, Brasil",
"country": "Brasil",
"state": "RJ",
"city": "Rio de Janeiro",
"postalCode": "22620-171",
"primaryAddress": "Av. Lúcio Costa, 1234",
"type": "Personal",
"additionalInfo": "Apartamento 101"
}
],
"phoneNumbers": [
{
"type": "Personal",
"value": "+54 911 12345678"
}
],
"emails": [
{
"type": "Personal",
"value": "myemail@pluggy.ai"
}
],
"relations": [
{
"type": "Father",
"name": "Juan Gonzalez"
},
{
"type": "Spouse",
"name": "Laura Garcia"
}
],
"createdAt": "2020-09-30T14:38:12.724Z",
"updatedAt": "2020-09-30T14:38:12.724Z"
}Code Examples
curl -X GET 'https://api.pluggy.ai/identity' \
-H 'Content-Type: application/json' \
-H 'X-API-KEY: YOUR_API_KEY'