probe-gate
Demonstrates querying for child files when the SHA1 is a regular file (not a container)
curl 'https://hashlookup.circl.lu/children/5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8/10/0'
import requests
resp = requests.get("https://hashlookup.circl.lu/children/5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8/10/0")
data = resp.json()
import zingu_apis
api = zingu_apis.api("circl")
result = api.fetch("children/{sha1}/{count}/{cursor}")
for item in result:
print(item)
const resp = await fetch("https://hashlookup.circl.lu/children/5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8/10/0");
const data = await resp.json();