Links

All Lores by an Address

Fetch Lore content created by a particular wallet address or ENS name
This API endpoint returns you a list of all Lore objects created by a user wallet or ENS name. 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
https://api.hyy.pe/api/v1
/lores
All Lores
Only pass a walletAddress or ENS name or the hyype username. If you pass more than one parameter, the API call will fail.
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/lores?skip=0&limit=50&walletAddress=0x874f5b8cc54EAd6738a7bc3aF7C16790808FFDA9' \
--header 'client-id: YOUR_CLIENT_ID_HERE' \
--data-raw ''
HTTP
GET /api/v1/lores?skip=0&limit=50&walletAddress=0x874f5b8cc54EAd6738a7bc3aF7C16790808FFDA9 HTTP/1.1
Host: api.hyy.pe
client-id: YOUR_CLIENT_ID_HERE