Tickerdevelopers
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

curl -X GET 'https://api.tickerapp.net/v2/disclosures/sources/rns/items/urn:newsml:londonstockexchange.com:20251231:1234A:1' \
  -H 'x-api-key: $TICKER_API_KEY'

Try it

Try it live
Send a real request to this endpoint with your API key. Sign in to try it from your browser.
Sign in to try →

Parameters

Path parameters

identifierrequired
string

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
401Invalid or missing API key
404Disclosure item not found
500Server error