I hired a developer to create a web app, which we spent about $20k on, with little to no results and I am tapped for funds. I do have some programming knowledge, enough to be able to read code and logic, but I am new to appgyver and APIs. I have read various threads and watch a ton of videos, which none have really helped me thus far. I have a data provider that I get sports information from (scores, etc) . The API has a url that uses an API key and each source url has a different feedID. Below is an example of the feed url and and example of the data that should be fetched.
https://api2.domain.net/v4/?feedID=123&api-key={KEYHERE}
{
“id”: “654321”,
“gameUID”: “123456”,
“type”: “Scores”,
“api”: “Live Scores”,
“feedID”: 477,
“speed”: 1,
“sport”: “Football”,
“league”: “NCAA”,
“startDate”: “2021-11-26T20:30:00Z”,
“seasonType”: “Regular”,
“seasonYear”: “2021”,
“seasonWeek”: “Week 13”,
“awayTeamAbb”: “MIZ”,
“awayTeamCity”: “Missouri”,
“awayTeamName”: “Tigers”,
“awayTeam”: “Missouri”,
“homeTeamAbb”: “ARK”,
“homeTeamCity”: “Arkansas”,
“homeTeamName”: “Razorbacks”,
“homeTeam”: “Arkansas”,
“description”: “Missouri vs Arkansas”,
“venueName”: “Razorback Stadium”,
“venueLocation”: “Fayetteville, AR”,
“isLive”: true,
“status”: “Live”,
“period”: “3”,
“clock”: “11:13”,
“scoreAwayTotal”: 6,
“scoreHomeTotal”: 17,
“scoreAwayPeriod1”: 0,
“scoreAwayPeriod2”: 6,
“scoreAwayPeriod3”: 0,
“scoreHomePeriod1”: 3,
“scoreHomePeriod2”: 7,
“scoreHomePeriod3”: 7,
“lastPlay”: “(C. Little KICK)”,
“nextUpdate”: -12,
“checkedDate”: “2021-11-26T22:47:24Z”
},