GET
/disclosures/sources/rns/items/{identifier}Get a single RNS disclosure item
Returns a single disclosure item by its identifier. Accepts either a GUID or rnsDateId format (auto-detected by length).
Code samples
Try it
Try it live
Send a real request to this endpoint with your API key. Sign in to try it from your browser.
Parameters
Path parameters
identifierrequiredstring
The disclosure item identifier. Accepts two formats: - GUID: The globally unique identifier (e.g., urn:newsml:londonstockexchange.com:20251231:1234A:1) - rnsDateId: A 16-character composite key in format yyyy-mm-dd.rnsId (e.g., 2025-12-31.1234A)
The format is auto-detected by length: exactly 16 characters = rnsDateId, otherwise GUID.
Examples:
urn:newsml:londonstockexchange.com:20251231:1234A:1 (GUID format), 2025-12-31.1234A (rnsDateId format (16 chars))Responses
200The requested disclosure item{
"data": DisclosureItem
}401Invalid or missing API key{
"error": ErrorDetail
}404Disclosure item not found{
"error": ErrorDetail
}500Server error{
"error": ErrorDetail
}