- Path parameters
- {entry}: Valid Entry ID
Get information about a specific entry.
Need entries:read scope, and the associated user must be capable to view this entry.
Need entries:read scope, and the associated user must be capable to view this entry.
- Response
- data: [
'id': int,
'type': string,
'title': string,
'complete_title': string,
'slug': string,
'description': string,
'main_image':null| string,
'game': null|Game,
'platform': null|Platform,
'status': null|Status,
'level': null|Level,
'authors': Author[],
'categories': Category[]|null,
'galleries': GalleryItem[]|null,
'hashes': HashItem[]|null,
'languages': Language[]|null,
'modifications': Modification[]|null,
'systems': System[]|null,
'version': string,
'release_date': string,
'staff_credits': CreditItem[]|null,
'relevant_link': string|null,
'youtube_link': string|null,
'user_id': int,
'created_at': string,
'updated_at': string
]
Game, Platform, Status, Level, Author, Category, Language, Modification, System schema can be found in the associated metadata endpoints.
GalleryItem: ['image': string, 'order': int]
HashItem: ['filename': string, 'hash_crc32': string, 'hash_sha1': string, 'verified': string]
CreditItem: ['name': string, 'description': string]