Endpoints
Get Sources
This endpoint returns all available sources.
GET
/
sources
Copy
curl --request GET \
--url https://nekosauce.com/api/sources
Copy
{
"data": [
{
"id": 123,
"module": "<string>",
"name": "<string>",
"urls": {
"website": "<string>",
"documentation": "<string>"
},
"enabled": true,
"components": {
"fetcher": "<string>",
"downloader": "<string>",
"tagger": "<string>"
},
"sauce_types": [
123
],
"update_frequency": "<string>"
}
]
}
Response
200 - application/json
The query was completed successfully
The response is of type object
.
Was this page helpful?
Copy
curl --request GET \
--url https://nekosauce.com/api/sources
Copy
{
"data": [
{
"id": 123,
"module": "<string>",
"name": "<string>",
"urls": {
"website": "<string>",
"documentation": "<string>"
},
"enabled": true,
"components": {
"fetcher": "<string>",
"downloader": "<string>",
"tagger": "<string>"
},
"sauce_types": [
123
],
"update_frequency": "<string>"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.