Assuming you have an index defined on id, you could do something like this to get the first value:
SELECT DISTINCT * FROM /Customer.keys ORDER BY id ASC LIMIT 1
Or, conversely to get the highest value:
SELECT DISTINCT * FROM /Customer.keys ORDER BY id DESC LIMIT 1
--Jens