curl --request GET \
--url https://api.example.com/api/deep-search{
"[array]": [
{
"id": "<string>",
"slug": "<string>",
"titulo": "<string>",
"alt": "<string>",
"imagen": "<string>",
"year": "<string>",
"generos": "<string>",
"idioma": "<string>",
"tipo": "<string>",
"url": "<string>"
}
],
"error": "<string>"
}Perform an advanced search across all content
curl --request GET \
--url https://api.example.com/api/deep-search{
"[array]": [
{
"id": "<string>",
"slug": "<string>",
"titulo": "<string>",
"alt": "<string>",
"imagen": "<string>",
"year": "<string>",
"generos": "<string>",
"idioma": "<string>",
"tipo": "<string>",
"url": "<string>"
}
],
"error": "<string>"
}GET /api/deep-search
/api/listado endpoint.
Show Item properties
curl "http://localhost:1234/api/deep-search?query=avengers"
[
{
"id": "11223",
"slug": "avengers-endgame",
"titulo": "Avengers: Endgame",
"alt": "Avengers: Endgame",
"imagen": "https://example.com/endgame.jpg",
"year": "2019",
"generos": "Action, Adventure, Sci-Fi",
"idioma": "Latino",
"tipo": "pelicula",
"url": "https://sololatino.net/peliculas/avengers-endgame"
},
{
"id": "44556",
"slug": "avengers-infinity-war",
"titulo": "Avengers: Infinity War",
"alt": "Avengers: Infinity War",
"imagen": "https://example.com/infinitywar.jpg",
"year": "2018",
"generos": "Action, Adventure, Sci-Fi",
"idioma": "Latino",
"tipo": "pelicula",
"url": "https://sololatino.net/peliculas/avengers-infinity-war"
}
]
{
"error": "Falta el parámetro de búsqueda"
}
400 Bad Request
{
"error": "No se pudo obtener resultados de búsqueda profunda"
}
503 Service Unavailable
{
"error": "No se pudo realizar la búsqueda profunda: Connection timeout"
}
500 Internal Server Error
Deep Search (/api/deep-search)
Quick Search (/api/listado?busqueda=...)
# These are equivalent:
curl "http://localhost:1234/api/deep-search?query=spider man"
curl "http://localhost:1234/api/deep-search?query=spider%20man"