Google Calendar events.get returns an events resource
an event resource only contains the following information about an attendee
"attendees": [
{
"id": string,
"email": string,
"displayName": string,
"organizer": boolean,
"self": boolean,
"resource": boolean,
"optional": boolean,
"responseStatus": string,
"comment": string,
"additionalGuests": integer
}
],
The Google Contacts api is an old Gdata api, that being said its very limited to what you can do with it. I am not even sure if you can search on them or if you just get a full list of all of a users contacts back Contacts.Getcontacts in which case you are just going to have to scan though them yourself.
If you are looking for more information on the person in question a crazy idea would be to try the People.search method in the Google+ api. If you where to say search on the name of the person, get a list back of all the people matching that persons name if you are lucky they have email public you could then match the email to that. However this will only work if the person in question has their email address set to public.
Could you try and describe a bit in your question exactly what it is you are trying to achieve with this?