Retrieve the details about a state.
api_key (Required)
Your API application key. If you don't have one,
create one.
state_id (Required)
The state_id number of the state to look within. State ID's are referenced in other methods, such as metro.getStateList and metro.getInfo. To run getInfo on multiple states, simply pass a comma-separated list of state_id numbers.
{ "rsp" : { "stat" : "ok",
"state" : [ { "code" : "al",
"country_id" : 1,
"id" : 1,
"name" : "Alabama"
},
{ "code" : "ak",
"country_id" : 1,
"id" : 2,
"name" : "Alaska"
},
{ "code" : "az",
"country_id" : 1,
"id" : 3,
"name" : "Arizona"
},
{ "code" : "ar",
"country_id" : 1,
"id" : 4,
"name" : "Arkansas"
}
],
"version" : 1
}
}