To check the type of something just add a question mark after the type, for example to check if x is a number:
(define get-Type
(lambda (x)
(cond ((number? x) "Number")
((pair? x) "Pair")
((string? x) "String")
((list? x) "List"))))
Just continue with that.