Skip to main content
Version: 2.0

Get

Get

This endpoint retrieves the complete details of a specific recipient — including name, TIN information, address, contact details, and any form-specific fields. Use this to verify recipient data or retrieve details for display in your application.

You can provide any one of the following identifier combinations to retrieve the recipient details

  • RecipientId only
  • PayeeRef only
  • TINType with TIN
  • TINType with Encrypted TIN
  • TINType with TIN Token
  • TINType with the last 4 digits of the TIN
GET recipient/get

Request Body

FieldTypeDescription
RecipientIdGUIDTaxBandits-generated unique identifier for the recipient. Required if PayeeRef is not provided.
PayeeRefStringOptional Your unique identifier for the recipient. Required if RecipientId is not provided.
TINTypeStringThe TIN type of the recipient.
Allowed values

"EIN", "SSN", "QI-EIN", "ITIN", "WP-EIN", "WT-EIN", "NQI-EIN", "IRSN"

TINStringTaxpayer Identification Number of the recipient.
EncryptedTINStringEncrypted Taxpayer Identification Number of the recipient.
TINTokenStringTokenized Taxpayer Identification Number of the recipient.
Last4DigitStringLast 4 digits of the Taxpayer Identification Number of the recipient.
DBAIdGUIDTaxBandits-generated unique identifier for a specific DBA to retrieve.
DBARefStringYour unique identifier for a specific DBA to retrieve.

Response Body

FieldTypeDescription
RecipientObject []Array of matching recipient records.
RecipientIdGUIDTaxBandits-generated unique identifier for the recipient.
PayeeRefsString []Your unique identifier(s) for the payee.
IsActiveBooleanIdentifies whether this recipient is currently active.
TINDetailsObjectTIN details of the recipient.
TINTypeStringTIN type of the recipient.
TINStringTaxpayer identification number of the recipient.
TINTokenStringTokenized TIN of the recipient.
EncryptedTINStringEncrypted TIN of the recipient.
Last4DigitStringLast 4 digits of the recipient TIN.
TINMatchStatusStringTIN matching status of the recipient.
IndividualNmObjectIf the TINType is SSN, ITIN, or ATIN.
FirstNmStringFirst name of the individual.
MiddleNmStringMiddle name of the individual.
LastNmStringLast name of the individual.
SuffixStringSuffix of the individual's name.
BusinessNmStringName of the recipient business.
DBADetailsObject []DBA details of the recipient.
DBANmStringName of the DBA.
DBARefStringYour unique identifier for the DBA.
DBAIdGUIDTaxBandits-generated unique identifier for the DBA.
AddressObjectAddress details of the DBA.
Address1StringStreet address or PO Box of the DBA.
Address2StringSuite or apartment of the DBA.
CityStringCity of the DBA.
ProvinceOrStateStringProvince or state name of the DBA.
ZipCdStringZIP code of the DBA.
CountryStringCountry code of the DBA.
AddressObjectAddress of the recipient.
Address1StringStreet address or PO Box of the recipient.
Address2StringSuite or apartment of the recipient.
CityStringCity of the recipient.
ProvinceOrStateStringProvince or state name of the recipient.
ZipCdStringZIP code of the recipient.
CountryStringCountry code of the recipient.
DOBStringDate of Birth of the recipient.
EmailStringEmail address of the recipient.
FaxStringFax number of the recipient.
PhoneStringPhone number of the recipient.
W9DetailsObjectInformation specific to W-9 / 1099 recipients.
FedTaxClassificationStringFederal tax classification of the recipient.
ExemptPayeeCdStringExempt payee code reported on Form W-9.
FATCACodeStringExemption from FATCA reporting code.
IsBackupWthBooleanIndicates whether the recipient is subject to backup withholding.
W8BenDetailsObjectInformation specific to foreign recipients (Form W-8BEN).
CitizenOfCountryStringCountry of citizenship of the recipient.
FTINStringForeign Tax Identification Number of the recipient.
IsFTINNotLegallyRequiredBooleanIndicates whether the recipient is not legally required to provide an FTIN.
1042SDetailsObjectInformation specific to 1042-S filings.
Ch3CdStringChapter 3 status code of the recipient.
Ch4CdStringChapter 4 status code of the recipient.
GIINStringRecipient's Global Intermediary Identification Number (GIIN).
LOBCodeStringLimitation on Benefits (LOB) code claimed by the recipient.
ErrorsObject []Top-level request errors if the entire request cannot be processed.
IdStringValidation error code.
NameStringName of the validation rule that failed.
MessageStringDescription of what went wrong.

Request JSON

recipient/get?recipientId=d67539c3-0603-4fb7-9a29-3ae15339269a&tintype=SSN&last4digit=6000&payeeref=PAYEE001&DBARef=SC001&dbaid=a32b351f-00b6-4639-a1ec-835b10ee8dae

Response JSON

{
"Recipients": [
{
"RecipientId": "d67539c3-0603-4fb7-9a29-3ae15339269a",
"PayeeRefs": [
"PAYEE001"
],
"IsActive": true,
"TINDetails": {
"Format": "PLAIN_TIN",
"TINType": "SSN",
"TIN": "123-45-6000",

},
"IndividualNm": {
"FirstNm": "John",
"MiddleNm": "Michael",
"LastNm": "Smith",
"Suffix": null,
},
"NameCtrl": null,
"BusinessNm": null,
"DBADetails": [
{
"DBANm": "Smith Consulting",
"DBARef": "SC001",
"DBAId": "a32b351f-00b6-4639-a1ec-835b10ee8dae",
"Address": {
"Address1": "4500 N Lamar Blvd",
"Address2": "Suite 210",
"City": "Austin",
"ProvinceOrState": "TX",
"ZipCd": "78756",
"Country": "US"
}
}
],
"Address": {
"Address1": "123 Main Street",
"Address2": "Apt 4B",
"City": "Austin",
"ProvinceOrState": "TX",
"ZipCd": "78701",
"Country": "US"
},
"DOB": "01/05/1970",
"Email": "john.smith@example.com",
"Fax": null,
"Phone": "(512) 555-1234",
"W9Details": {
"FedTaxClassification": "INDIVIDUAL_OR_SOLE_PROPRIETOR",
"ExemptPayeeCd": null,
"FATCACode": null,
"IsBackupWth": false
},
"W8BenDetails": null,
"Form1042SDetails": null
}
],
"Errors": null
}