English
Protocol API
cURL
curl --request POST \ --url https://api.storyapis.com/api/v4/search \ --header 'Content-Type: application/json' \ --header 'X-Api-Key: <api-key>' \ --data '{ "mediaType": "image", "pagination": { "limit": 20, "offset": 0 }, "query": "dragon NFT" }'
{ "$schema": "https://api.storyapis.com/api/v4/SearchResponseBodyHuma.json", "data": [ { "description": "<string>", "ipId": "<string>", "mediaType": "<string>", "score": 123, "similarity": 123, "title": "<string>" } ], "pagination": { "hasMore": true, "limit": 123, "offset": 123, "total": 123 }, "total": 123 }
Perform vector search for IP assets based on query text and optional media type filter. This endpoint uses AI-powered search to find relevant assets by semantic similarity.
OK
The response is of type object.
object