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