GET
/
search
curl --request GET \
  --url https://api.wild-card.ai/search \
  --header 'X-API-Key: <x-api-key>'
{
  "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

X-API-Key
string
required

The API key for authenticating the request. You can find your API key in the Wildcard dashboard.

Query Parameters

query
string
required

The search query string.

collection_id
string
required

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
points
object[]