Help with cloud api for datastores

Hello how do I do this
local experienceStore = DataStoreService:GetDataStore(“PlayerExperience”)
using the cloud api for data stores?

You don’t. Roblox’s DataStoreService is an abstraction object that wraps around the underlying APIs.

The Cloud API is a REST API, which is a stateless system. In other words, for each web request you send to the API, you have to include all relevant information regarding what you want to do (e.g. the DataStore name).

You can find the endpoints here: Standard Data Stores | Documentation - Roblox Creator Hub

I already looked that documentation but I didn’t find what I was looking for. So in simple terms, you cannot create a new datastore outside roblox?

You can’t create a data store through OpenCloud API, only access the ones that already exist. However, you can create a new data store entry in a data store or manage an already existing one through OpenCloud API.

What’s your use case for this?