To get the entry at a specific revision, add @<revisionId> to the end of
the path.
For example, to get my-entry at the revision ID
08DC3D3F43F9FCC1.0000000001.08DC3D3F43F9FCC1.01, use the path
/cloud/v2/universes/1234/data-stores/5678/entries/my-entry@08DC3D3F43F9FCC1.0000000001.08DC3D3F43F9FCC1.01.
If your entry ID contains one or more @ characters, and you want to get
the latest version rather than at any specific revision, append the special
revision ID @latest to the end of the path. Otherwise, the segment of the
entry ID after the last @ will be interpreted as a revision ID.
For example, to get the latest revision of my-entry, use the path
/cloud/v2/universes/1234/data-stores/5678/entries/my@entry@latest.
To get the entry that was current at a specific time, add
@latest:<timestamp> to the end of the path, where <timestamp> is
RFC-3339 formatted. The given timestamp must be after
the Unix epoch (1/1/1970) and not more than ten minutes in the future.
For example, to get the revision of my-entry that was current on
12/2/2024 at 06:00 UTC, use the path
/cloud/v2/universes/1234/data-stores/5678/entries/my-entry@latest:2024-12-02T06:00:00Z.
GET https://apis.roblox.com/cloud/cloud/v2/universes/:universe_id/data-stores/:data_store_id/entries/:entry_id Get Data Store Entry universe_id The universe ID. data_store_id The data-store ID. entry_id The entry ID. Gets the specified entry.
To get the entry at a specific revision, add
@<revisionId>
to the end of the path.For example, to get
my-entry
at the revision ID08DC3D3F43F9FCC1.0000000001.08DC3D3F43F9FCC1.01
, use the path/cloud/v2/universes/1234/data-stores/5678/entries/my-entry@08DC3D3F43F9FCC1.0000000001.08DC3D3F43F9FCC1.01
.If your entry ID contains one or more
@
characters, and you want to get the latest version rather than at any specific revision, append the special revision ID@latest
to the end of the path. Otherwise, the segment of the entry ID after the last@
will be interpreted as a revision ID.For example, to get the latest revision of
my-entry
, use the path/cloud/v2/universes/1234/data-stores/5678/entries/my@entry@latest
.To get the entry that was current at a specific time, add
@latest:<timestamp>
to the end of the path, where<timestamp>
is RFC-3339 formatted. The given timestamp must be after the Unix epoch (1/1/1970) and not more than ten minutes in the future.For example, to get the revision of
my-entry
that was current on 12/2/2024 at 06:00 UTC, use the path/cloud/v2/universes/1234/data-stores/5678/entries/my-entry@latest:2024-12-02T06:00:00Z
.