action opentargets_get_search { label: "Search for a disease or a target" description: "This method allows you to look for gene or diseases of interest using a free text search,\nreplicating the functionality of the search box on our homepage. It should be used to identify\nthe best match for a disease or target of interest, rather than gathering a specific set of evidence.\n" provider: opentargets method: GET path: "/platform/public/search" encoding: json input: { type: "object" properties: { filter: { type: "string" } from: { type: "string" } q: { type: "string" } size: { type: "string" } } required: ["q"] additionalProperties: false } output: { type: "object" additionalProperties: true } }