# Statics Storage

We can save any data we want to have in our game. Static data like weapons, shop items, character, etc. We need to add these data in the dashboard, for doing that go to the dashboard part.

# Fetch Static Data

To fetch static data we can use FetchStaticDate like below:

    client.StaticStorage.FetchStaticDate("weapons" , (res) =>
        {
            Debug.Log(res.Message);
            Debug.Log(res.Data);
        });

It's return data as array.