Get Web Download Cached Availability

GET {{api_base}}/{{api_version}}/api/webdl/checkcached?hash={{webdl_hash}}&format=object

Overview

Takes in a list of comma separated usenet hashes and checks if the web download is cached. This endpoint only gets a max of around 100 at a time, due to http limits in queries. If you want to do more, you can simply do more hash queries. Such as:
?hash=XXXX&hash=XXXX&hash=XXXX

or ?hash=XXXX,XXXX&hash=XXXX&hash=XXXX,XXXX

and this will work too. Performance is very fast. Less than 1 second per 100. Time is approximately O(log n) time for those interested in taking it to its max. That is without caching as well. This endpoint stores a cache for an hour.

You may also pass a format parameter with the format you want the data in. Options are either object or list . You can view examples of both below.

To get the hash of a web download, pass the link through an md5 hash algo and it will return the proper hash for it.

Authorization

Requires an API key using the Authorization Bearer Header.

Request Params

| Key | Datatype | Required | Description | | hash | string | | The list of web hashes you want to check. Comma seperated. To find the hash, md5 the link. | | format | string | | Format you want the data in. Acceptable is either "object" or "list". List is the most performant option as it doesn't require modification of the list. |

HEADERS

| Key | Datatype | Required | Description |

RESPONSES

status: ``