Company search

The company search service returns a list of companies that match with the results inputed by the user by body params the more specific parameters informed, the more assertive are the results provided by the route.

You need to inform one of the parameters name or number to search a company.

Company search

The company search service is a resource that allows users to search for companies based on specific parameters. This route accepts the parameters listed below.
Permission required: Services query

post

/services

Header parameters
Authorizationstringrequired

Your access token. See more in the 'Authentication' topic of this section.

Body
servicestringrequired

The name of the requested service, for Company Search need be "kybCompanySearch"

Example: kybCompanySearch
parametersobject

The data expected by the service Company Search

metadataobject

All fields passed to the metadata will be returned in the response, this field is useful to bring an internal identifier of the request for example

Responses
curl -L \
  --request POST \
  --url 'https://api.public.caf.io/v1/services' \
  --header 'Authorization: text' \
  --header 'Content-Type: application/json' \
  --data '{"service":"kybCompanySearch","parameters":{},"metadata":{}}'
{
  "requestId": "text",
  "message": "text",
  "data": {
    "service": "kybCompanySearch",
    "serviceData": {
      "companies": [
        {
          "id": "R0ItMC0xNDA4NDk3OV9KY1JtaTVPWGl5ekQtb0UxTV8yV1pB",
          "score": 100,
          "availableServices": {
            "creditReportId": "GB-0-14084975",
            "businessIdentityId": "JcRmi5OXtyzD-oE1M_2WZA"
          },
          "company": {
            "name": "Apple INC.",
            "country": "BR",
            "address": "18 WIMBORNE ROAD, PENCOED, BRIDGEND, MID GLAMORGAN, CF35 6SG",
            "status": "Active",
            "number": 14084973
          }
        }
      ]
    },
    "metadata": {}
  }
}

Last updated

Was this helpful?