probe-gate
Demonstrates paginated retrieval of parent containers for a file using SHA1 hash
curl 'https://hashlookup.circl.lu/parents/a9993e364706816aba3e25717850c26c9cd0d89d/10/0'
import requests
resp = requests.get("https://hashlookup.circl.lu/parents/a9993e364706816aba3e25717850c26c9cd0d89d/10/0")
data = resp.json()
import zingu_apis
api = zingu_apis.api("circl")
result = api.fetch("parents/{sha1}/{count}/{cursor}")
for item in result:
print(item)
const resp = await fetch("https://hashlookup.circl.lu/parents/a9993e364706816aba3e25717850c26c9cd0d89d/10/0");
const data = await resp.json();