Having trouble retreiving records

Having trouble retreiving records, error say no api key provided

http://localhost:8080/api/v2/db/_table/Employee/2?fields=EID?api_key='36fda24fe5588fa4285ac6c6c2fdfbdb6b6bc9834699774c9bf777f706d05a88'

Your url is formatted incorrectly. The ? indicates the start of a series of parameters, which should be separated by &, not additional ?s. Also I notice you have %27 on each end of your api key (which is the url encode for ') This is not necessary.

http://localhost:8080/api/v2/db/_table/Employee/2?fields=EID&api_key=36fda24fe5588fa4285ac6c6c2fdfbdb6b6bc9834699774c9bf777f706d05a88