sonomar / ug-hackathon-app

Hackathon Demo App for the Solana Germany Hackathon September-October 2024
MIT License
2 stars 1 forks source link

Charities Page #3

Open gueei opened 2 weeks ago

gueei commented 2 weeks ago

FE: Chartiy list, donatees NFT picture BE: GET /api/charity - name, country, city GET /api/charity/id - donatees (name, charityid, type, detail () ) GET /api/donatee/id/imgA - return the image for nft GET /api/donatee/id/imgB - return the image for nft ...

gueei commented 2 weeks ago

GET /api/charity/id - charity detail + donatee, e.g.:

{ "id": "3", "name": "Olson - Crist", "city": "Jimmietown", "country": "Belize", "donatees": [ { "id": 30, "name": "Cairn Terrier", "type": "dog", "birthday": "2018-05-10T14:23:13.968Z" }, { "id": 31, "name": "American English Coonhound", "type": "dog", "birthday": "2020-01-02T20:40:29.333Z" }, { "id": 32, "name": "Neapolitan Mastiff", "type": "dog", "birthday": "2019-03-28T07:51:02.348Z" }, { "id": 33, "name": "Glen of Imaal Terrier", "type": "dog", "birthday": "2019-03-15T03:03:19.757Z" } ] }

gueei commented 2 weeks ago

Chartiy List added