The API I'm using provides a JSON output. How can I parse it on android studio? I've never seen a JSON printout like this before.
{
"market": {
"100": {
"name": "forexample",
"surname": "forexample2"
},
"101": {
"name": "forexample3",
"surname": "forexample4"
},
.
.
.
"999": {
"name": "forexampleXX",
"surname": "forexampleXX"
}
}
}
"101" continues to increase by 1. It's going to be too long to make individual identifications. What's the shortest way?