APIs
Pagination
any api that fetches bulk data will have pagination applied, the size of each page is indicated in the api response as well as all information required to paginate through the data { 	"data" \[ ], 	"links" { 	 "first" "https //profile backend detected app/api/v1/public/profiles?page=1", 	 "last" "https //profile backend detected app/api/v1/public/profiles?page=1", 	 "prev" null, 	 "next" null 	}, 	"meta" { 	 "current page" 1, 	 "from" 1, 	 "last page" 1, 	 "links" \[ 	 { 	 "url" null, 	 "label" "\« previous", 	 "active" false 	 }, 	 { 	 "url" "https //profile backend detected app/api/v1/public/profiles?page=1", 	 "label" "1", 	 "active" true 	 }, 	 { 	 "url" null, 	 "label" "next \»", 	 "active" false 	 } 	 ], 	 "path" "https //profile backend detected app/api/v1/public/profiles", 	 "per page" 15, 	 "to" 6, 	 "total" 6 	} }