All User Lores for Collection
Fetch a list of User created Lore objects for an NFT collection / series
This API endpoint returns you a list of User created Lore objects for an NFT collection / series. This is a paginated API and accepts
skip
and limit
as part of the query-string.To make a request, send your Client ID in the request header alongside required query parameters to the Lores API. On success, the API will return a list of all lore objects.
get
http://api.hyy.pe/api/v1/timeline/collection
/<smart_contract_address>
Lores by collection
Take a look at how you might want to pass on the client ID via
HTTP
or curl:
cURL
HTTP
curl --location --request GET 'https://api.hyy.pe/api/v1/timeline/collection/<smart-contract-address>?skip=0&limit=20' \
--header 'client-id: <client-id>' \
--data-raw ''
GET /api/v1/timeline/collection/<smart-contract-address>?skip=0&limit=20 HTTP/1.1
Host: api.hyy.pe
client-id: <client-id>
For Artblocks, this endpoint will be modified as:
http://api.hyy.pe/api/v1/timeline/collection/<smart_contractaddress>-<project_id>
So, For e.g. 'Fidenza by Tyler Hobbs' query endpoint will be:
https://api.hyy.pe/api/v1/timeline/collection/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270-78?skip=0&limit=20
Last modified 1yr ago