fuzzy_query_company
Perform a fuzzy search using company name keywords to retrieve enterprise information, enabling accurate identification of company full names for further API queries.
Instructions
Fuzzy search through company name keywords to return a list of enterprise information. Use this tool to retrieve the company's full name before calling other tools that require it.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
keyWord | Yes | company name keywords |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"keyWord": {
"description": "company name keywords",
"type": "string"
}
},
"required": [
"keyWord"
],
"type": "object"
}