curl --request GET \
--url https://api.example.com/api/anime/{slug}{
"slug": "<string>",
"info": {
"titulo": "<string>",
"sinopsis": "<string>",
"generos": [
{}
],
"imagen_poster": "<string>",
"fecha_estreno": "<string>"
},
"temporadas": {
"temporada": 123,
"episodio": 123,
"titulo": "<string>",
"fecha": "<string>",
"imagen": "<string>",
"url": "<string>"
},
"error": "<string>"
}Get detailed information about an anime series, including all episodes
curl --request GET \
--url https://api.example.com/api/anime/{slug}{
"slug": "<string>",
"info": {
"titulo": "<string>",
"sinopsis": "<string>",
"generos": [
{}
],
"imagen_poster": "<string>",
"fecha_estreno": "<string>"
},
"temporadas": {
"temporada": 123,
"episodio": 123,
"titulo": "<string>",
"fecha": "<string>",
"imagen": "<string>",
"url": "<string>"
},
"error": "<string>"
}GET /api/anime/{slug}
/api/pelicula for those).
/api/listado or search results)Show Season structure
curl http://localhost:1234/api/anime/attack-on-titan
{
"slug": "attack-on-titan",
"info": {
"titulo": "Attack on Titan",
"sinopsis": "After his hometown is destroyed and his mother is killed, young Eren Jaeger vows to cleanse the earth of the giant humanoid Titans that have brought humanity to the brink of extinction.",
"generos": ["Action", "Adventure", "Animation", "Drama", "Fantasy"],
"imagen_poster": "https://example.com/aot-poster.jpg",
"fecha_estreno": "2013-04-07"
},
"temporadas": {
"1": [
{
"temporada": 1,
"episodio": 1,
"titulo": "To You, in 2000 Years: The Fall of Shiganshina, Part 1",
"fecha": "2013-04-07",
"imagen": "https://example.com/ep1-thumb.jpg",
"url": "https://sololatino.net/animes/attack-on-titan/temporada-1/episodio-1"
},
{
"temporada": 1,
"episodio": 2,
"titulo": "That Day: The Fall of Shiganshina, Part 2",
"fecha": "2013-04-14",
"imagen": "https://example.com/ep2-thumb.jpg",
"url": "https://sololatino.net/animes/attack-on-titan/temporada-1/episodio-2"
}
],
"2": [
{
"temporada": 2,
"episodio": 1,
"titulo": "Beast Titan",
"fecha": "2017-04-01",
"imagen": "https://example.com/s2e1-thumb.jpg",
"url": "https://sololatino.net/animes/attack-on-titan/temporada-2/episodio-1"
}
]
}
}
{
"error": "Anime no encontrado"
}
404 Not Found
/api/anime/{slug} and /api/serie/{slug} use the same underlying extraction logic and return the same response structure. The difference is:/api/serie/{slug}: Searches Series section first, then Anime section/api/anime/{slug}: Searches only the Anime section/api/anime/{slug} is more efficient as it doesn’t search the Series section first./api/anime/{slug} (this endpoint)/api/pelicula/{slug}url field with the /api/iframe_player endpoint:
curl "http://localhost:1234/api/iframe_player?url=https://sololatino.net/animes/attack-on-titan/temporada-1/episodio-1"
temporadas object:
<noscript> tags when needed