action owler_fuzzy_company_search { label: "Fuzzy Search Company by Name or Address or Phone" description: "The Company Fuzzy Search API searches for a company based on the input and will return results containing basic details about matching companies. By default the API returns at most top 10 available results unless the limit is specified. The maximum limit is restricted to 30." provider: owler method: GET path: "/v1/company/fuzzysearch" encoding: json input: { type: "object" properties: { fields: { type: "string" } format: { type: "string" } limit: { type: "string" } q: { type: "string" } } required: ["fields", "q"] additionalProperties: false } output: { type: "object" additionalProperties: true } }