Skip to main content
Version: 2.2

Get project settings

GEThttps://api.moralis-streams.com/settings

Get the settings for the current project based on the project api-key.

Responses
API KEY
import Moralis from 'moralis';

try {
await Moralis.start({
apiKey: "YOUR_API_KEY"
});

const response = Moralis.Streams.readSettings({});

console.log(response.raw);
} catch (e) {
console.error(e);
}
Response Example
{
"region": ""
}