Search
Flow
Search
Tool Selection
Performs a search within the specified collection using a natural language query to find the most relevant tool.
GET
/
search
Copy
Ask AI
curl --request GET \
--url https://api.wild-card.ai/search \
--header 'X-API-Key: <x-api-key>'
Copy
Ask AI
{
"points": [
{
"id": "<string>",
"version": 123,
"score": 123,
"payload": {
"agentsJson": "<string>",
"info": {
"title": "<string>",
"version": "<string>",
"description": "<string>"
},
"sources": [
{
"id": "<string>",
"path": "<string>"
}
],
"overrides": [
"<any>"
],
"flows": [
{
"id": "<string>",
"title": "<string>",
"description": "<string>",
"actions": [
{
"id": "<string>",
"sourceId": "<string>",
"operationId": "<string>"
}
],
"links": [
{
"origin": {
"actionId": "<string>",
"fieldPath": "<string>"
},
"target": {
"actionId": "<string>",
"fieldPath": "<string>"
}
}
],
"fields": {
"parameters": [
"<any>"
],
"requestBody": {
"content": {},
"required": true
},
"responses": {
"success": {}
}
}
}
]
},
"vector": [
123
],
"shard_key": "<string>",
"order_value": 123
}
]
}
Headers
The API key for authenticating the request. You can find your API key in the Wildcard dashboard.
Query Parameters
The search query string.
The ID of the collection to search within (e.g., "c58a5915-7b28-49b1-a28d-d81ffc6f63ea").
Example:
"c58a5915-7b28-49b1-a28d-d81ffc6f63ea"
Response
200
application/json
Successful Response
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url https://api.wild-card.ai/search \
--header 'X-API-Key: <x-api-key>'
Copy
Ask AI
{
"points": [
{
"id": "<string>",
"version": 123,
"score": 123,
"payload": {
"agentsJson": "<string>",
"info": {
"title": "<string>",
"version": "<string>",
"description": "<string>"
},
"sources": [
{
"id": "<string>",
"path": "<string>"
}
],
"overrides": [
"<any>"
],
"flows": [
{
"id": "<string>",
"title": "<string>",
"description": "<string>",
"actions": [
{
"id": "<string>",
"sourceId": "<string>",
"operationId": "<string>"
}
],
"links": [
{
"origin": {
"actionId": "<string>",
"fieldPath": "<string>"
},
"target": {
"actionId": "<string>",
"fieldPath": "<string>"
}
}
],
"fields": {
"parameters": [
"<any>"
],
"requestBody": {
"content": {},
"required": true
},
"responses": {
"success": {}
}
}
}
]
},
"vector": [
123
],
"shard_key": "<string>",
"order_value": 123
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.