action opentrials_search_trials { label: "searchTrials" description: "Returns trials based on a search query. By default, it'll search in all of a trial's attributes.\n- `q` is a [ElasticSearch query string](https://www.elastic.co/guide/en/elasticsearch/reference/2.3/query-dsl-query-string-query.html#query-string-syntax) (e.g. `public_title:(depressive OR depression)`)\n- `page` can take a value between `1` and `100`\n- `per_page` can take a value between `10` and `100`" provider: opentrials method: GET path: "/search" encoding: json input: { type: "object" properties: { page: { type: "string" } per_page: { type: "string" } q: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }