Home
Home
  1. Matcher
  • Getting started
  • Authentication
  • Webhooks
  • Embeddable Widgets
    • Overview
    • Document Upload Widget
      • UI/UX Best Practices
  • Guides
    • Verifying a new business
    • Verifying bank accounts
    • Supported document types
  • API Reference
    • Submissions
      • Reports
        • List available report templates
        • Download a report
      • Create new submission
      • Get submission
      • Update submission
      • Update submission status
      • Run business verification
      • Get submission checks
      • Delete submission
    • Documents
      • Public Documents API
        • List documents
        • Upload document
        • Get document
        • Delete document
      • List documents
      • Upload document for submission
      • Get document
      • Delete document
      • Download document file
      • Rerun validations
    • RPC Search
      • Get company with ID
      • Company RFC Lookup
      • Company Name Search
      • Download document
    • Utilities
      • Matcher
        • Run name matching
          POST
  1. Matcher

Run name matching

Production
https://api.niva.co/v1
Production
https://api.niva.co/v1
POST
https://api.niva.co/v1
/utilities/matcher/name
Check if two people or business names match.

Request

Authorization
Add parameter in header
apiKey
Example:
apiKey: ********************
Body Params application/json

Example
{
    "names": ["DISEÑO DE FORMAS METALICAS", "DISEÑO DE FORMAS METALICAS S DE RL DE CV"]
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.niva.co/v1/utilities/matcher/name' \
--header 'apiKey: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
    "names": ["DISEÑO DE FORMAS METALICAS", "DISEÑO DE FORMAS METALICAS S DE RL DE CV"]
}'

Responses

🟢200Success
application/json
Bodyapplication/json

Example
{
    "names": [
        "DISEÑO DE FORMAS METALICAS",
        "DISEÑO DE FORMAS METALICAS S DE RL DE CV"
    ],
    "match": true
}
🟠422Unprocessable Content
Previous
Matcher