Bulk Retrieve Companies & Certificates
Bulk Retrieve Companies & Certificates
Find multiple companies and certificates by name and match rate.
POST
/bulk-companies
Fields that are marked with an asterisk (*
) are mandatory.
The API accepts multiple Company Information and can match multiple Certified Entities from IAFCertSearch per request.
Companies:
The
companies
must be provided.The maximum number of company data that this endpoint accepts is 100.
Companies Information Requirements
At least one of the two fields,
company_name
orcompany_identifiers
, must be provided.
Match Rate Value:
The default rate value is set to 100.
The minimum acceptable rate value is 80, regardless of whether a lower threshold is specified.
Valid rate values range from 80 to 100, in increments of 5.
Any rate value exceeding 100 will automatically be capped at 100.
Response Value:
The API will return a list of matched Certified Entities with its Certificates.
You may use the
companies_request_index
field in the response to correlate which item from thecompanies
request data array the Certified Entity was matched with. The first element of thecompanies
request data array starts with the index 0. (i.e., The corresponding matched record will have a value ofcompanies_request_index: 0
)
Headers
Content-Type*
String
application/json
x-http-authorization*
String
API Key received from https://www.iafcertsearch.org/api-verification
Example:
x-http-authorization: <<API KEY>>
Request Body
companies
Array of Objects
Array of companies to be matched The maximum number of company data that this endpoint accepts is 100
companies.*company_country*
String
companies.*.company_name
String
Certified Entity Name (Company Name) as detailed on the Certificate.
companies.*.company_identifiers
Object
Additional Company Fields
Format:
"company_identifiers": {
"vat": "string",
"tax_id": "string",
"business_registration_number": "string",
"duns_number": "string",
"company_id_number": "string"
}
match_rate
Number / String
The percentage or similarity score indicating how closely the details of two companies match during the verification process.
Example:
100 | "100%"
Example Payload Request
Responses
Last updated