Why this code shows improper output
If you want to parse JSON into a structure, the members must be public - ie have an initial Capital.
Eg
type Base struct {
Results []struct {
Mp_id string
First_name string
Last_name string
}
Count int
Page struct {
Count int
Per_page int
Page int
}
}