This article contains useful recipes to query the ISAN Registry. It covers the following topics:
- How to list children of an ISAN?
- more to come...
How to list children of an ISAN?
ISAN API Path: /queries
List all groups of a series
{
"parentIsan": {
"root": "0000-0000-0000"
},
"recordKind": ["group"]
}
List all episodes of a series
{
"parentIsan": {
"root": "0000-0000-0000"
},
"recordKind": ["episode"]
}
List all episodes of a group
{
"parentIsan": {
"root": "0000-0000-0000",
"episodeOrPart": "F001"
},
"recordKind": ["episode"]
}
List child versions
All child versions
{
"parentIsan": {
"root": "0000-0000-0000",
"episodeOrPart": "0000"
"check1": "1",
"version": "0000-0000",
"check2": "2"
},
}
or
{
"parentIsan": {
"value": "0000-0000-0000-0000-1-0000-0000-2"
}
}
Specific recordKind in child versions
{
"parentIsan": {
"value": "0000-0000-0000-0000-1-0000-0000-2"
}
"recordKind": ["manifestation", "related_item"]
}
Comments
0 comments
Please sign in to leave a comment.