/celebs/
Returns detailed celebrity information, including awards and mediography.
Request Parameters
| Parameter | Mandatory? | Description |
|---|
| personId | Yes | PersonId for specific celebrity; id can be found in cast/crew information of programs metadata |
| imageSize | No | Valid values are: Sm, Md, Lg, Ms. If not specified, defaults to Md. If requested image size is not available, generic image will be returned. |
| api_key | Yes | 24-character key obtained during application registration |
Response Body
| Response | Type | Description |
|---|
| Celebrity details | Celebrity | Celebrity metadata, including bio, awards, and mediography |
Sample Request
http://data.tmsapi.com/v1.1/celebs/13461?imageSize=Lg&api_key=1234567890
Sample Response
{
"entityType": "celebrity",
"personId": "13461",
"alternateNames": [{
"nameId": "13461",
"first": "Clint",
"last": "Eastwood"
}],
"birthDate": "1930-05-31",
"birthPlace": "San Francisco, California",
"gender": "M",
"awards": [{
"awardId": "3",
"name": "Screen Actors Guild Awards",
"awardName": "Screen Actors Guild Awards",
"rootId": "35226",
"tmsId": "MV001529640000",
"won": "true",
"year": "2004",
"category": "Outstanding Performance by a Cast in a Motion Picture",
"awardCatId": "49"
}],
"credits": [{
"role": "Actor",
"characterName": "Joe",
"rootId": "10072651",
"tmsId": "MV004977720000",
"type": "Feature Film",
"year": "1964",
"title": "A Fistfull of Dollars"
}],
"preferredImage": {
"width": "270",
"height": "360",
"caption": {
"content": "Clint Eastwood"
},
"uri": "v3/AllPhotos/13461/13461_v3_ba.jpg",
"category": "Photo - headshot"
}
}
Last modified on