Introduction
Mirror World Smart Platform was built to simplify the process of building Web3 web and mobile applications for high-conversion or even for hobbyists that want to build simple applications. Building simple Web3 apps should be simple.
Mirror World's offering makes it possible to build powerful multi-chain Web3 experiences for mobile and the web by providing top-class and easy-to-use APIs and cross-platform SDKs around 3 main features:
- Smart Authentication - User-friendly Authentication
- Smart Marketplace - Asset Management (NFTs and Marketplaces)
- Smart Wallet - Wallets Service
Quick Start (5 minutes)
The fastest way to get started with Mirror World's API is to get an API key on the developer dashboard, and consume it in the SDK of the platform you're building for.
Making your first call
- Create a developer account.
- Create a new project.
- Copy the API Key. (Save it! We shall use it in the next step)
- Lift off!
curl --location -g 'https://api.mirrorworld.fun/v2/solana/mainnet-beta/asset/nft/Ct1GvgpBzzhMtKb7nKc3U3kouPA3fHncAahPY1HthB9E' \--header 'x-api-key; <YOUR_API_KEY>' \--header 'Content-Type: application/json'
import { MirrorWorld, ClusterEnvironment } from "@usemirrorworld/web3.js"const mirrorworld = new MirrorWorld({ apiKey: "YOUR_API_KEY" env: ClusterEnvironment.testnet // This can be changed to mainnet using `ClusterEnvironment.mainnet`})const mintAddress = "Ct1GvgpBzzhMtKb7nKc3U3kouPA3fHncAahPY1HthB9E"const nft = await mirrorworld.getNftDetails(mintAddress)
Great! At this point you're ready to start building with the Mirror World SDK. There are a few things you can do to proceed from here:
SDK Integration Guides
Jump-start your Web3 project development with the SDKs.
Android
Get started with the Android SDK
iOS
Get started with the iOS SDK
Unity
Get started with the Unity SDK
JavaScript
Get started with the JavaScript SDK
Rust
Get started with the Rust SDK
Going Further
- Check out the full development guide here
- Explorer our cross-platform Integration Guides
- See what's possible by exploring the SDK API Reference
- Looking for inspiration? Take a look at our Guides or see what builders are building in the Showcase.
- Join the Mirror World Developer community! We're a passionate community of builders!
We're open-source!
Mirror World is open-source. Checkout the code on GitHub
Community
- Developer Discord 👉 Join the Discord community
- Twitter 👉 Follow us on Twitter
Edit this page on GitHub