I want to combine responses of two or more APIs. I havent made API before so would prefer something which is available online to combine two APIs.
For example, if one API lists the names of cities in California and other lists names of cities in Texas, then how can I combine them in a way that just one API call returns list of cities of California as well as Texas?
Do you guys know if something like this is available online? Like any tool or something?
Thanks in advance for your help.
I want following structure OR an API that has the following structure. Any API having this structure is fine, it just should have a range of locations
results:
[
California :
{
county:Orange county
lat:
long:
},
{
county:santa clara county
lat:
long:
},
{
county:LA county
lat:
long:
},
{
county:long beach county
lat:
long:
},
],
Texas:
{
county:Orange county
lat:
long:
},
{
county:Orange county
lat:
long:
},
{
county:Orange county
lat:
long:
},
{
county:Orange county
lat:
long:
},
{
county:Orange county
lat:
long:
},
],
New Jersey[
{
county:Orange county
lat:
long:
}
]
]
` tags in your question text – jmunsch Dec 23 '16 at 09:02