I've a raw JSON data in string format(collected from API).
"0": {
"name": "Powerball",
"plays": [
{
"name": "Powerball",
"active": null,
"draws": [
{
"date": "08\/22\/2022",
"nextDrawDate": "08\/24\/2022",
"nextDrawJackpot": 100000000,
"numbers": [
{
"value": "12",
"order": 1,
"specialBall": null
},
{
"value": "27",
"order": 2,
"specialBall": null
},
{
"value": "34",
"order": 3,
"specialBall": null
},
{
"value": "55",
"order": 4,
"specialBall": null
},
{
"value": "67",
"order": 5,
"specialBall": null
},
{
"value": "09",
"order": 6,
"specialBall": {
"name": "Powerball"
}
},
{
"value": "2",
"order": 7,
"specialBall": {
"name": "Power Play"
}
}
],
"prizes": [
],
"extraFields": [
]
}
]
}
now i've to get this data and do some logic which is alraedy done by POSTMAN.But,now i've try this out without POSTMAN,but can't call the API.So,i've to make a dummy API which'll just have to send the JSON data to my PHP(for example,getAPIData.php).I don't know how to do it?Any help would be appreciated