Please help build a scenario.
I want to recursively call an API with a different URL each time:
https://api.lunaciarover.com/.../0x38129b256a895afb06f5e3...
https://api.lunaciarover.com/.../0xc151798ffca08c8c8f95e2...
Then I want to parse the results into a single block of text:
ign: coinvision.co | bob, mmr: 3344, total slp: 500
ign: coinvision.co | fred, mmr: 1020, total slp: 200
...
etc.
From there I will send the text to Discord in a single message. I have made an effort, but I'm stuck on two things:
- how to iterate and change the URL of the API call
- how to append the string to the same message
Attempt shown in image below.