GET /v1/search
Hybrid search (keyword + semantic) across templates, actions, triggers, connector definitions, and workflows

Query Parameters

q string required query
Search query
types string[] optional query
Resource types to search: template, action, trigger, connector_def, workflow (singular or plural forms accepted)
limit integer optional query
Results per type (default: 20, max: 100)
offset integer optional query
Pagination offset (default: 0)

Responses

200 OK
application/json
processingTimeMs integer
query string
results object[]
Array of:
category string
description string
id string
name string
score number
status string
tags string[]
Array of:
type string
workflowType string
totalHits integer
400 Bad Request
503 Service Unavailable
curl -X GET 'https://api.example.com/v1/search?q=string' \  -H 'Authorization: Bearer YOUR_API_TOKEN'
const response = await fetch('https://api.example.com/v1/search?q=string', {  method: 'GET',  headers: {      "Authorization": "Bearer YOUR_API_TOKEN"  }});const data = await response.json();console.log(data);
import requestsheaders = {    'Authorization': 'Bearer YOUR_API_TOKEN'}response = requests.get('https://api.example.com/v1/search?q=string', headers=headers)print(response.json())
package mainimport (	"fmt"	"io"	"net/http")func main() {	req, _ := http.NewRequest("GET", "https://api.example.com/v1/search?q=string", nil)	req.Header.Set("Authorization", "Bearer YOUR_API_TOKEN")	resp, _ := http.DefaultClient.Do(req)	defer resp.Body.Close()	result, _ := io.ReadAll(resp.Body)	fmt.Println(string(result))}
200 Response
{  "processingTimeMs": 123,  "query": "<string>",  "results": [    {      "category": "<string>",      "description": "<string>",      "id": "<string>",      "name": "<string>",      "score": 123,      "status": "<string>",      "tags": [        "<string>"      ],      "type": "<string>",      "workflowType": "<string>"    }  ],  "totalHits": 123}
Ask a question... ⌘I