{"info":{"_postman_id":"c90dbf02-0f90-49fa-b30a-db97631b6da2","name":"Mirror World Smart Platform API","description":"<html><head></head><body><p><img src=\"https://raw.githubusercontent.com/mirrorworld-universe/docs.mirrorworld.fun/main/public/images/banner.png\" alt=\"Mirror World\"></p>\n<p>Welcome to the Mirror World Smart Platform API Documentation!</p>\n<p>Mirror World Smart Platform was built to simplify the process of building Web3 web and mobile applications at scale. Mirror World's offering makes it possible to <em>build powerful multi-chain Web3 experiences</em> for mobile and the web by providing top-class and easy-to-use APIs and cross-platform <a href=\"https://mirrorworld.fun/docs/integration\">SDKs</a> around 3 main features:</p>\n<ol>\n<li><a href=\"https://mirrorworld.fun/docs/solutions/smart-auth\">Smart Authentication</a> - User-friendly Authentication</li>\n<li><a href=\"https://mirrorworld.fun/docs/solutions/smart-marketplace\">Smart Marketplace</a> - Asset Management (NFTs and Marketplaces)</li>\n<li><a href=\"https://mirrorworld.fun/docs/solutions/smart-wallet\">Smart Wallet</a> - Wallets Service</li>\n</ol>\n<p>The API allows you to access these functionality via a set of standardized endpoints.</p>\n<h1 id=\"getting-started\">Getting Started</h1>\n<p>To use the Mirror World API, you'll need to create a project on the <a href=\"https://app.mirrorworld.fun\">Developer Dashboard</a> and copy it's API credentials.</p>\n<p>If you haven't created a developer account yet, please go to the <a href=\"https://app.mirrorworld.fun\">Developer Dashboard</a> to create a developer account.</p>\n<h1 id=\"api-credentials-authentication\">API Credentials &amp; Authentication</h1>\n<p>The API Credentials used in this API consist of your <strong>API Key</strong> and/or your <strong>Authorization</strong> token. You'll use these credentials to authenticate all requests you send to this API.</p>\n<ul>\n<li><strong>API Key</strong> - This is used to authenticate all incoming requests to the API cluster. All requests require an <code>x-api-key</code> header to be provided in the request header.</li>\n<li><strong>Authorization Token</strong> - This is a <code>Bearer</code> type token provided inside the <code>Authorization</code> header in this pattern: <code>Authorization: Bearer &lt;TOKEN&gt;</code>  Developers can generate a <em><strong>Secret Access Key</strong></em> that functions as an Authorization token on the <a href=\"https://app.mirrorworld.fun\">Developer Dashboard</a> under the <a href=\"https://mirrorworld.fun/docs/overview/development-guide/developer-dashboard#secret-access-key-management\">Account Settings</a> menu. Users on the other hand will acquire this when they login to your project normally.</li>\n</ul>\n<blockquote>\n<p>Learn more about <a href=\"https://mirrorworld.fun/docs/overview/development-guide/developer-dashboard#secret-access-key-management\">Secret Access Key Management</a></p>\n</blockquote>\n<p>Each API documented herein will highlight the required API credentials. If you send a request that doesn't contain the correct API credentials, the said request will not be honored.</p>\n<h1 id=\"api-responses\">API Responses</h1>\n<p>API responses are in JSON format. All API responses share the same envelope structure featuring the following 4 top level JSON attributes: <code>status</code>, <code>data</code>, <code>message</code>, <code>code</code>.</p>\n<h2 id=\"api-response-schema\">API Response Schema</h2>\n<p><strong>status</strong> | <code>string</code></p>\n<p>This value will either be <code>success</code> or <code>fail</code>. You will use the value of this attribute to determine what attributes you parse next. If <code>success</code>, you will always have an accompanying data attribute. If the value is <code>fail</code>, you will always have an accompanying error code in the <code>code</code> property and the error title and message in the <code>error</code> and <code>message</code> fields respectively.</p>\n<p><strong><code>data</code></strong> | <code>object | array | null</code>\nThis attribute represents the primary content of a successful API response. For a successful response, it will always be an Object or an Array depending on the expected cardinality of the requested data set. If you request a single item, for example, it will be an object. If you request multiple items, it will be an array. For a failed request, it will return <code>null</code></p>\n<p><strong><code>code</code></strong> | <code>string | number</code>\nA successful response will return a <code>code</code> of <code>0</code>. If the response fails, or returns an error, it will contain an error code that can be used to lookup the error definition in <a href=\"https://mirrorworld.fun/docs/further-reading/api-error-reference\">Error Reference Documentation</a></p>\n<p><strong><code>message</code></strong> | <code>string</code>\nFor a successful response, the <code>message</code> field will be used to return some arbitrary data about the successful response. In a failed/error response, the <code>message</code> field will contain an error message that will describe what went wrong with the request.</p>\n<p><strong><code>error</code></strong> | <code>string</code>\nThis field is only provided for failed API requests. It contains a short uppercase error title describing the cause of the error. For example, for a request with no API Key, the <code>error: \"INVALID_API_KEY\"</code> is provided in the response. The <code>error</code> field will also be accomanied by a descriptive message in the <code>message</code> field. All API errors are documented in the <a href=\"https://mirrorworld.fun/docs/further-reading/api-error-reference\">API Error Reference Document</a></p>\n<h3 id=\"example-successful-response\">Example (Successful Response)</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"status\": \"success\",\n  \"code\": 0,\n  \"message\": \"successfully listed nft\",\n  \"data\": {\n    \"nft\": {\n      \"token_id\": \"0\",\n      \"contract_address\": \"0x0a37026DBFf6164319Dd54b25c357BAeC53040d2\",\n      \"url\": \"\",\n      \"metadata\": \"\",\n      \"contract_type\": \"erc1155\"\n    },\n    \"receipt_type\": \"buy\",\n    \"order_status\": \"filled\",\n    \"seller\": \"0x9646986b72099C9bEB620572FdbFda8286511172\",\n    \"buyer\": \"0x9646986b72099C9bEB620572FdbFda8286511172\",\n    \"price\": \"0.1\",\n    \"amount\": \"1\",\n    \"marketplace_address\": \"0xAeAd331622371228A0388E8D4909aC77681AF1b8\",\n    \"order_hash\": \"0x25dee35543fee304545e2b5ad42f6ab1d0c1cd3fc69f762fe99a6ca020d399d1\"\n  }\n}\n</code></pre>\n<h3 id=\"example-failed-response\">Example (Failed Response)</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"data\": null,\n  \"code\": \"120104\",\n  \"error\": \"LISTING_DOES_NOT_EXIST\",\n  \"message\": \"Listing does not exist.\"\n}\n</code></pre>\n<h1 id=\"making-your-first-api-request\">Making your first API Request</h1>\n<p>To make your first call,</p>\n<ul>\n<li>Create a Project on the Developer Dashboard and Copy the API Key if you haven't already.</li>\n<li>Send a <code>GET</code> request to <a href=\"\"><code>/v2/auth/echo</code></a> API with:<ul>\n<li>The <code>x-api-key</code> header set to your project API Key.</li>\n</ul>\n</li>\n</ul>\n<p>You can use Postman to make this request, or directly <code>curl</code> it in the terminal like this: </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-bash\">curl --location -g 'https://api.mirrorworld.fun/v2/auth/echo' \\\n--header 'x-api-key; &lt;YOUR_API_KEY&gt;' \\\n</code></pre>\n<p>A successful response will look like this:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"code\": 0,\n  \"data\": {\n      \"status\" : \"Mirrorworld Auth V2 Service is Up!\"\n  },\n  \"message\": \"\",\n  \"status\": \"success\"\n}\n</code></pre>\n<h1 id=\"api-service-infrastructure\">API Service Infrastructure</h1>\n<p>The Mirror World API Cluster is grouped into four main services namely:</p>\n<ol>\n<li><strong>Authentication Service</strong> - The Authentication service handles user authentication, social login, as well as developers' projects and user settings management. It also processes 2FA for approving actions for state mutation of on-chain accounts for users.</li>\n<li><strong>Asset Services</strong> - Handles multi-chain collection and NFT asset minting as well as well tracking ownership of assets.  It handles NFT marketplace procedures and auction processes. For advanced use cases, it can produce raw headless marketplace and asset transactions that can be can used with external wallets.</li>\n<li><strong>Wallet (MPC) Service</strong> - Handles multi-chain MPC wallet account generation for new users. It will also hanle wallet token balance querying (supports FIAT amounts) &amp; token transfers/withdrawals</li>\n<li><strong>Metadata Service</strong> - Handles multi-chain storefront APIs for building marketplaces. It also processes collection metadata and adds filters, sorting and listing queries on top of your collections to significantly improve the UX for building Marketplaces on Solana.</li>\n</ol>\n<p>Here's a simple diagram of Mirror World's API Infrastructure</p>\n<p><img src=\"https://raw.githubusercontent.com/mirrorworld-universe/docs.mirrorworld.fun/main/public/images/infrastrucure-advanced.png\" alt=\"API Infrustructure\"></p>\n<h1 id=\"multichain-support-matrix\">Multichain Support Matrix</h1>\n<p>Some Mirror World's API Services interact with the blockchain. For requests that interact with the blockchain, the URL Schema for such requests will require a <code>/:chain/:network</code> path parameters in the URL.</p>\n<p>✅ - Supported (Live, can be used)\n🚧 - In development (Not yet publicly available)</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Chain</th>\n<th>Network (mainnet)</th>\n<th>Network (testnet)</th>\n<th>Example</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><strong>Solana</strong></td>\n<td><code>mainnet-beta</code> ( ✅ )</td>\n<td><code>devnet</code> ( ✅ )</td>\n<td><code>/v2/solana/mainnet-beta/xxx/yyy</code></td>\n</tr>\n<tr>\n<td><strong>Polygon</strong></td>\n<td><code>mumbai-mainnet</code> ( ✅ )</td>\n<td><code>mumbai-testnet</code> ( ✅ )</td>\n<td><code>/v2/polygon/mumbai-mainnet/xxx/yyy</code></td>\n</tr>\n<tr>\n<td><strong>BNB Chain</strong></td>\n<td><code>bnb-mainnet</code> ( ✅ )</td>\n<td><code>bnb-testnet</code> ( ✅ )</td>\n<td><code>/v2/bnb/bnb-testnet/xxx/yyy</code></td>\n</tr>\n<tr>\n<td><strong>Ethereum</strong></td>\n<td><code>mainnet</code> ( 🚧 )</td>\n<td><code>goerli</code> ( ✅ )</td>\n<td><code>/v2/ethereum/goerli/xxx/yyy</code></td>\n</tr>\n<tr>\n<td><strong>Sui</strong></td>\n<td><code>mainnet</code> ( 🚧 )</td>\n<td><code>testnet</code> ( 🚧 )</td>\n<td><code>/v2/sui/mainnet/xxx/yyy</code></td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>See the full <a href=\"https://mirrorworld.fun/docs/overview/introduction/multi-chain-solutions\">Multichain Support Matri here.</a></strong></p>\n<h1 id=\"community-and-support\">Community and Support</h1>\n<p>If you're building with the Mirror World SDK, join the Mirror World <a href=\"https://mirrorworld.fun/discord\">Developer Discord Community</a> and engage other builders. You can also contact us through these <a href=\"https://mirrorworld.fun/docs/resources/support\">Support channels</a>.</p>\n<p>You may also follow our <a href=\"https://github.com/mirrorworld-universe\">GitHub Organization</a> for open-source updates!</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Getting Started","slug":"getting-started"},{"content":"API Credentials & Authentication","slug":"api-credentials-authentication"},{"content":"API Responses","slug":"api-responses"},{"content":"Making your first API Request","slug":"making-your-first-api-request"},{"content":"API Service Infrastructure","slug":"api-service-infrastructure"},{"content":"Multichain Support Matrix","slug":"multichain-support-matrix"},{"content":"Community and Support","slug":"community-and-support"}],"owner":"22264663","collectionId":"c90dbf02-0f90-49fa-b30a-db97631b6da2","publishedId":"2s93JtS4aQ","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2023-03-13T08:03:54.000Z"},"item":[{"name":"Asset","item":[{"name":"Sui","item":[{"name":"Auction","item":[{"name":"Buy NFT on the marketplace","id":"5d20a9e1-5b47-46df-9482-c13b864211bd","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"x-authorization-token","value":"\"<authorization token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"nft_object_id\": \"0x0a37026DBFf6164319Dd54b25c357BAeC53040d2\",\n    \"price\": 0.1,\n    \"marketplace_address\": \"0xAeAd331622371228A0388E8D4909aC77681AF1b8\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/auction/buy","description":"<p><strong>This endpoint is used to buy an NFT on the marketplace</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>nft_object_id</strong> | <code>string</code> The address of the NFT</li>\n<li><strong>price</strong> | <code>decimal</code> The price of the NFT</li>\n<li><strong>marketplace_address</strong> | <code>string</code> The address of the marketplace</li>\n</ul>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>confirmation</strong> | <code>string</code> The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","asset","auction","buy"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"a2a44030-0371-4d41-83a1-bf4685996570","type":"any","value":"sui","key":"chain"},{"id":"5f55e8bd-81bc-490f-a356-cb092f48e802","type":"any","value":"testnet","key":"network"}]}},"response":[{"id":"5d9de75e-8ed2-46e3-9beb-5474a992a6c1","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"x-authorization-token","value":"\"<authorization token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"nft_object_id\": \"0x0a37026DBFf6164319Dd54b25c357BAeC53040d2\",\n    \"price\": 0.1,\n    \"marketplace_address\": \"0xAeAd331622371228A0388E8D4909aC77681AF1b8\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/auction/buy","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","auction","buy"],"variable":[{"key":"chain","value":"sui"},{"key":"network","value":"testnet"}]},"description":"**This endpoint is used to buy an NFT on the marketplace**\n\n*Required parameters:*\n- **nft_object_id** | `string` The address of the NFT\n- **price** | `decimal` The price of the NFT\n- **marketplace_address** | `string` The address of the marketplace\n\n*Optional parameters:*\n- **confirmation** | `string` The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"successfully bought nft\",\n    \"data\": {\n        \"nft_object_id\": \"0x0a37026DBFf6164319Dd54b25c357BAeC53040d2\",\n        \"receipt_type\": \"buy\",\n        \"order_status\": \"filled\",\n        \"seller\": \"0x9646986b72099C9bEB620572FdbFda8286511172\",\n        \"buyer\": \"0x9646986b72099C9bEB620572FdbFda8286511172\",\n        \"price\": \"0.1\",\n        \"marketplace_address\": \"0xAeAd331622371228A0388E8D4909aC77681AF1b8\",\n        \"digest\": \"0x25dee35543fee304545e2b5ad42f6ab1d0c1cd3fc69f762fe99a6ca020d399d1\",\n        \"payment_token\": \"0x2::sui::SUI\",\n        \"chain\": \"sui\",\n        \"network\": \"testnet\"\n    }\n}"}],"_postman_id":"5d20a9e1-5b47-46df-9482-c13b864211bd"},{"name":"Cancel NFT listing on the marketplace","id":"c95bf11c-f265-4841-954f-ef3f528a3fba","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"x-authorization-token","value":"\"<authorization token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"nft_object_id\": \"0x0a37026DBFf6164319Dd54b25c357BAeC53040d2\",\n    \"marketplace_address\": \"0xAeAd331622371228A0388E8D4909aC77681AF1b8\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/auction/cancel","description":"<p><strong>This endpoint is used to cancel an NFT listing on the marketplace</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>nft_object_id</strong> | <code>string</code> The address of the NFT</li>\n<li><strong>marketplace_address</strong> | <code>string</code> The address of the marketplace</li>\n</ul>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>confirmation</strong> | <code>string</code> The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","asset","auction","cancel"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"ce5286a4-9903-4239-bdca-b81ec3a09494","type":"any","value":"sui","key":"chain"},{"id":"814385d9-94f2-4895-8bb8-8a0b200a8a10","type":"any","value":"testnet","key":"network"}]}},"response":[{"id":"3b1063cd-a577-4bd7-9607-6e5e497c1aa8","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"x-authorization-token","value":"\"<authorization token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"nft_object_id\": \"0x0a37026DBFf6164319Dd54b25c357BAeC53040d2\",\n    \"marketplace_address\": \"0xAeAd331622371228A0388E8D4909aC77681AF1b8\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/auction/cancel","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","auction","cancel"],"variable":[{"key":"chain","value":"sui"},{"key":"network","value":"testnet"}]},"description":"**This endpoint is used to cancel an NFT listing on the marketplace**\n\n*Required parameters:*\n- **nft_object_id** | `string` The address of the NFT\n- **marketplace_address** | `string` The address of the marketplace\n\n*Optional parameters:*\n- **confirmation** | `string` The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"successfully cancelled nft listing\",\n    \"data\": {\n        \"nft_object_id\": \"0x0a37026DBFf6164319Dd54b25c357BAeC53040d2\",\n        \"receipt_type\": \"cancel\",\n        \"order_status\": \"cancelled\",\n        \"seller\": \"0x9646986b72099C9bEB620572FdbFda8286511172\",\n        \"price\": \"0.1\",\n        \"marketplace_address\": \"0xAeAd331622371228A0388E8D4909aC77681AF1b8\",\n        \"payment_token\": \"0x2::sui::SUI\",\n        \"digest\": \"0x25dee35543fee304545e2b5ad42f6ab1d0c1cd3fc69f762fe99a6ca020d399d1\",\n        \"chain\": \"sui\",\n        \"network\": \"testnet\"\n    }\n}"}],"_postman_id":"c95bf11c-f265-4841-954f-ef3f528a3fba"},{"name":"List NFT on the marketplace","id":"ae30e98f-6eaa-486a-b11a-4811bbd1e892","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"x-authorization-token","value":"\"<authorization token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"nft_object_id\": \"0x0a37026DBFf6164319Dd54b25c357BAeC53040d2\",\n    \"price\": 0.1,\n    \"marketplace_address\": \"0xAeAd331622371228A0388E8D4909aC77681AF1b8\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/auction/list","description":"<p><strong>This endpoint is used to list an NFT on the marketplace</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>nft_object_id</strong> | <code>string</code> The address of the NFT</li>\n<li><strong>price</strong> | <code>decimal</code> The price of the NFT</li>\n<li><strong>marketplace_address</strong> | <code>string</code> The address of the marketplace</li>\n</ul>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>confirmation</strong> | <code>string</code> The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","asset","auction","list"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"0f80ff3a-9833-4ce3-871a-b129598e33a8","type":"any","value":"sui","key":"chain"},{"id":"24d3672d-dbd2-4563-bf63-507342e82d6f","type":"any","value":"testnet","key":"network"}]}},"response":[{"id":"c0881877-a335-4de3-83b3-3d74816140f7","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"x-authorization-token","value":"\"<authorization token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"nft_object_id\": \"0x0a37026DBFf6164319Dd54b25c357BAeC53040d2\",\n    \"price\": 0.1,\n    \"marketplace_address\": \"0xAeAd331622371228A0388E8D4909aC77681AF1b8\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/auction/list","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","auction","list"],"variable":[{"key":"chain","value":"sui"},{"key":"network","value":"testnet"}]},"description":"**This endpoint is used to list an NFT on the marketplace**\n\n*Required parameters:*\n- **nft_object_id** | `string` The address of the NFT\n- **price** | `decimal` The price of the NFT\n- **marketplace_address** | `string` The address of the marketplace\n\n*Optional parameters:*\n- **confirmation** | `string` The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"successfully listed nft\",\n    \"data\": {\n        \"nft_object_id\": \"0x0a37026DBFf6164319Dd54b25c357BAeC53040d2\",\n        \"receipt_type\": \"list\",\n        \"order_status\": \"listed\",\n        \"seller\": \"0x9646986b72099C9bEB620572FdbFda8286511172\",\n        \"price\": \"0.1\",\n        \"marketplace_address\": \"0xAeAd331622371228A0388E8D4909aC77681AF1b8\",\n        \"payment_token\": \"0x2::sui::SUI\",\n        \"digest\": \"0x25dee35543fee304545e2b5ad42f6ab1d0c1cd3fc69f762fe99a6ca020d399d1\",\n        \"chain\": \"sui\",\n        \"network\": \"testnet\"\n    }\n}"}],"_postman_id":"ae30e98f-6eaa-486a-b11a-4811bbd1e892"},{"name":"Transfer NFT to another wallet","id":"126feba6-e07b-493c-bd74-2bb9fe9f4ab7","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"x-authorization-token","value":"\"<authorization token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"nft_object_id\": \"0x0a37026DBFf6164319Dd54b25c357BAeC53040d2\",\n    \"to_wallet_address\": \"0xa5DcC6f79dF52C5A8A03fF9ca5Feb4aC26fEEa34\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/auction/transfer","description":"<p><strong>This endpoint is used to transfer an NFT to another wallet</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>nft_object_id</strong> | <code>string</code> The address of the collection</li>\n<li><strong>to_wallet_address</strong> | <code>string</code> The address of the wallet to transfer the NFT to</li>\n</ul>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>confirmation</strong> | <code>string</code> The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","asset","auction","transfer"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"5095f026-72eb-43a9-8ee5-f3a6ff2498df","type":"any","value":"sui","key":"chain"},{"id":"0480fab3-e04f-42c0-a0a6-ff00a22ae595","type":"any","value":"testnet","key":"network"}]}},"response":[{"id":"fcdea641-32d3-4bbf-ab45-d7cd542c9ef8","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"x-authorization-token","value":"\"<authorization token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"nft_object_id\": \"0x0a37026DBFf6164319Dd54b25c357BAeC53040d2\",\n    \"to_wallet_address\": \"0xa5DcC6f79dF52C5A8A03fF9ca5Feb4aC26fEEa34\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/auction/transfer","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","auction","transfer"],"variable":[{"key":"chain","value":"sui"},{"key":"network","value":"testnet"}]},"description":"**This endpoint is used to transfer an NFT to another wallet**\n\n*Required parameters:*\n- **nft_object_id** | `string` The address of the collection\n- **to_wallet_address** | `string` The address of the wallet to transfer the NFT to\n\n*Optional parameters:*\n- **confirmation** | `string` The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"successfully transferred nft\",\n    \"data\": {\n        \"from\": \"0xC7C6FAcDf702cd1a7c201686fB9cCb8c5AaCCc68\",\n        \"to\": \"0xa5DcC6f79dF52C5A8A03fF9ca5Feb4aC26fEEa34\",\n        \"nft_object_id\": \"0x445B99fBc951f33B3527d25953F59Ee5cBC14bF3\",\n        \"digest\": \"0x46680f7a8582da8cb5f12b0aa8d22dfa12671f35330cfc9450479f0af4d1d50f\",\n        \"chain\": \"sui\",\n        \"network\": \"testnet\"\n    }\n}"}],"_postman_id":"126feba6-e07b-493c-bd74-2bb9fe9f4ab7"}],"id":"8358f7e8-5b54-45d2-8d9b-53dbc0da1f83","_postman_id":"8358f7e8-5b54-45d2-8d9b-53dbc0da1f83","description":""},{"name":"Marketplace","item":[{"name":"Search for marketplaces","id":"db6eb33f-ffca-435b-b978-f0800b66b108","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/marketplaces","description":"<p><strong>This endpoint is used to search for marketplaces</strong></p>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>page</strong> | <code>integer</code> The page number. Default is 1</li>\n<li><strong>size</strong> | <code>integer</code> The number of results per page. Default is 10</li>\n<li><strong>name</strong> | <code>string</code> The name of the marketplace. Default is all</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","asset","marketplaces"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"91d77f52-fbe1-4a91-9907-b59f1acbd4db","type":"any","value":"sui","key":"chain"},{"id":"3ec6c035-a0db-4403-93ac-eb6efaf291cf","type":"any","value":"testnet","key":"network"}]}},"response":[{"id":"89440454-d2f5-4f28-98cb-f118df5c6ccb","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/marketplaces","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","marketplaces"],"variable":[{"key":"chain","value":"sui"},{"key":"network","value":"testnet"}]},"description":"**This endpoint is used to search for marketplaces**\n\n*Optional parameters:*\n- **page** | `integer` The page number. Default is 1\n- **size** | `integer` The number of results per page. Default is 10\n- **name** | `string` The name of the marketplace. Default is all\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"Successfully queried marketplaces\",\n    \"data\": {\n        \"count\": 1,\n        \"total_pages\": 1,\n        \"page\": 1,\n        \"data\": []\n    }\n}"}],"_postman_id":"db6eb33f-ffca-435b-b978-f0800b66b108"},{"name":"Deploy SeaPort marketplace contract","id":"63a461ee-9cfd-4c18-b56d-8c39df9025cf","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"my market\",\n    \"fee_amount\": 0,\n    \"collection_address\": \"0x2df85f2c09b8246c60317abc8cbf48510fba370058aef4bfacb35a699636bc10\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/marketplaces/create","description":"<p><strong>This endpoint is used to deploy a SeaPort marketplace contract</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>collection_address</strong> | <code>string</code> Collection to be added to the marketplace</li>\n</ul>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>name</strong> | <code>string</code> The name of the marketplace. Default is randomly generated name</li>\n<li><strong>fee_amount</strong> | <code>integer</code> The fixed fee amount for each sale. NFT listings have to be higher than set fee amount. Default is 0</li>\n<li><strong>confirmation</strong> | <code>string</code> The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","asset","marketplaces","create"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"73666ee0-d4df-4f71-8263-79f8bcaccb6b","type":"any","value":"sui","key":"chain"},{"id":"fae66012-22ef-46c2-b312-37676543135f","type":"any","value":"testnet","key":"network"}]}},"response":[{"id":"b4378849-417d-422e-87ee-87f7b340b92c","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"my market\",\n    \"fee_amount\": 0,\n    \"collection_address\": \"0x2df85f2c09b8246c60317abc8cbf48510fba370058aef4bfacb35a699636bc10\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/marketplaces/create","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","marketplaces","create"],"variable":[{"key":"chain","value":"sui"},{"key":"network","value":"testnet"}]},"description":"**This endpoint is used to deploy a SeaPort marketplace contract**\n\n*Required parameters:*\n- **collection_address** | `string` Collection to be added to the marketplace\n\n*Optional parameters:*\n- **name** | `string` The name of the marketplace. Default is randomly generated name\n- **fee_amount** | `integer` The fixed fee amount for each sale. NFT listings have to be higher than set fee amount. Default is 0\n- **confirmation** | `string` The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"Successfully created marketplaces\",\n    \"data\": {\n        \"id\": 1,\n        \"name\": \"my market\",\n        \"collection_address\": \"0x47b094e5e95a6ccdd56e9c224bde79a75172d1d40a8c6d997e6d17106c8408e7\",\n        \"digest\": \"Hb4wsYGtRQiZyMsW17Ngrow4VFqtYLD9j6x79rAKkqyM\",\n        \"orderbook_address\": \"0x78025ad1042259f2542748ce7044882fd076b3ebe66732678a9a9efae51d8f92\",\n        \"orderbook_commission_address\": \"0x8a30d5dfb72c46421e30d2a9ab396427811c4810ae544daecfd7158619e4dbff\",\n        \"fee_amount\": 0,\n        \"fee_receiver\": \"0xad86c80c763513d32778ca68ee4849659c0733e330f3a1fad7cd371b850f9eea\",\n        \"payment_token\": \"0x2::sui::SUI\",\n        \"transfer_policy_object_id\": \"0x14406221b523815563f3d9ab62936595168ae1f7326b37f032b618a534dc9029\",\n        \"withdraw_policy_object_id\": \"0xadbcf11f5b92472e66a41b40829a233ac889e7801fdb46a54c3103288ef5be24\"\n    }\n}"}],"_postman_id":"63a461ee-9cfd-4c18-b56d-8c39df9025cf"}],"id":"1aec8df8-d735-4b1b-a1fb-ef69436a2224","_postman_id":"1aec8df8-d735-4b1b-a1fb-ef69436a2224","description":""},{"name":"Mint","item":[{"name":"Get minted collections","id":"6861abfa-77bc-4158-b66d-5199c3333774","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/mint/get-collections","description":"<p><strong>This endpoint is used to fetch collections that user already minted</strong></p>\n","urlObject":{"path":["v2",":chain",":network","asset","mint","get-collections"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"86152a03-ea50-4309-aae2-04738ba80e79","type":"any","value":"sui","key":"chain"},{"id":"7250c22f-a77a-4504-9f33-2bb57a683e56","type":"any","value":"testnet","key":"network"}]}},"response":[{"id":"e68afc17-98a5-46b7-b22e-07f9cc6f0124","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/mint/get-collections","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","mint","get-collections"],"variable":[{"key":"chain","value":"sui"},{"key":"network","value":"testnet"}]},"description":"**This endpoint is used to fetch collections that user already minted**\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"\",\n    \"data\": []\n}"}],"_postman_id":"6861abfa-77bc-4158-b66d-5199c3333774"},{"name":"Get nfts minted on collection","id":"9d63c7dd-1772-40da-993e-c4c1a69734d6","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/mint/get-collection-nfts/:collection_address","description":"<p><strong>This endpoint is used to fetch NFTs on collection that user already minted</strong></p>\n","urlObject":{"path":["v2",":chain",":network","asset","mint","get-collection-nfts",":collection_address"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"3ee9c6b2-2c5a-4372-ab24-824194a09cca","type":"any","value":"sui","key":"chain"},{"id":"27fda113-6ef9-4f76-a792-f928e3c54371","type":"any","value":"testnet","key":"network"},{"id":"16fcece1-a0b5-451e-ad23-88c6e43b4f14","type":"any","value":"0xC6657f2bfCb967a0F329eec6D448dAc209DC5553","key":"collection_address"}]}},"response":[{"id":"2217a094-a26b-4910-ad4a-5feb203917a0","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/mint/get-collection-nfts/:collection_address","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","mint","get-collection-nfts",":collection_address"],"variable":[{"key":"chain","value":"sui"},{"key":"network","value":"testnet"},{"key":"collection_address","value":"0xC6657f2bfCb967a0F329eec6D448dAc209DC5553"}]},"description":"**This endpoint is used to fetch NFTs on collection that user already minted**\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"\",\n    \"data\": []\n}"}],"_postman_id":"9d63c7dd-1772-40da-993e-c4c1a69734d6"},{"name":"Mint a new NFT Collection","id":"2a175ecb-c996-4763-8619-ad465b38224e","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"FUN\",\n    \"description\": \"funky\",\n    \"creators\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/mint/collection","description":"<p><strong>This endpoint is used to mint a new NFT collection. The collection can be type ERC1155 or ERC721</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>name</strong> | <code>string</code> The name of the collection</li>\n<li><strong>symbol</strong> | <code>string</code> The symbol of the collection</li>\n</ul>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>description</strong> | <code>string</code> The description of the collection.</li>\n<li><strong>creators</strong> | <code>string[]</code> The creators of the collection. Default is the user address</li>\n<li><strong>nft_payment_amount</strong> | <code>number</code> The amount of SUI to pay for minting the NFT. Default is 0</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","asset","mint","collection"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"cc90f882-fd07-4a3e-9070-fb91762ca826","type":"any","value":"sui","key":"chain"},{"id":"ed4bcb41-97be-4560-9e44-77a2a7deca23","type":"any","value":"testnet","key":"network"}]}},"response":[{"id":"4cf0feab-a7f9-46b1-bdfc-7923e51f4061","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"FUN\",\n    \"description\": \"funky\",\n    \"creators\": []\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/mint/collection","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","mint","collection"],"variable":[{"key":"chain","value":"sui"},{"key":"network","value":"testnet"}]},"description":"**This endpoint is used to mint a new NFT collection. The collection can be type ERC1155 or ERC721**\n\n*Required parameters:*\n- **name** | `string` The name of the collection\n- **symbol** | `string` The symbol of the collection\n\n*Optional parameters:*\n- **description** | `string` The description of the collection.\n- **creators** | `string[]` The creators of the collection. Default is the user address\n- **nft_payment_amount** | `number` The amount of SUI to pay for minting the NFT. Default is 0\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"Successfully minted collection\",\n    \"data\": {\n        \"user_id\": 7026,\n        \"name\": \"COLLECTION\",\n        \"description\": \"New collection\",\n        \"creators\": [\n            \"0x82662d232a75dfef824a1e50d40d3eb07feea3ede496f72d4c1e3aded6c20b7f\"\n        ],\n        \"digest\": \"D2EvDMHE1HeBfk8dXQYKk4KEfSXa442nmfPcSZoktRSY\",\n        \"contract_config_address\": \"0x1d364e4d435f40d98670887b550187f6a076b283ea3eae475f97f8dd31ded6eb\",\n        \"collection_address\": \"0x7e8754282f6c764249bc950c5075840d2bfa07ccfb2728d5e994c8b0f41d1a47\",\n        \"authority_address\": \"0x82662d232a75dfef824a1e50d40d3eb07feea3ede496f72d4c1e3aded6c20b7f\",\n        \"collection_cap_id\": \"0xea49ea1e522db00838dd3a42cf881a368c44a364aaacdf94e49aee14ceeef446\",\n        \"collection_cap_owner\": \"0x82662d232a75dfef824a1e50d40d3eb07feea3ede496f72d4c1e3aded6c20b7f\",\n        \"client_id\": \"7S470Fx-gl1Poyijt-n7o2yefbWz8ZDj3knU.xUExegr1.mirrorworld.fun\",\n        \"mint_cap_id\": \"0x1df5b5742919c73cd4491c31275ea35988c64bb478056c6533215fedaa399992\",\n        \"mint_cap_owner\": \"0x82662d232a75dfef824a1e50d40d3eb07feea3ede496f72d4c1e3aded6c20b7f\"\n    }\n}"}],"_postman_id":"2a175ecb-c996-4763-8619-ad465b38224e"},{"name":"Mint NFT on the collection","id":"a9b5a54a-77d2-4707-bd4b-edf126f04553","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"image_url\": \"https://storage.mirrorworld.fun/nft/10.png\",\n    \"collection_address\": \"0x0af7a593a95904f5343a089466cd914766b7313db69dc6b37121eaa457898a91\",\n    \"name\": \"MINT\",\n    \"description\": \"New mint\",\n    \"attributes\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/mint/nft","description":"<p>**This endpoint is used to mint a new NFT on the collection.</p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>collection_address</strong> | <code>string</code> The address of the collection</li>\n<li><strong>name</strong> | <code>string</code> The name of the NFT to be minted</li>\n<li><strong>image_url</strong> | <code>string</code> The image url of the NFT to be minted</li>\n<li><strong>attributes</strong> | <code>Attribute[]</code> Attribute of the NFT to be minted</li>\n</ul>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>description</strong> | <code>string</code> The description of the NFT to be minted</li>\n<li><strong>to_wallet_address</strong> | <code>string</code> The wallet address to which the NFT will be minted. Default is users wallet address</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","asset","mint","nft"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"d81cee72-bb77-4fdf-aeae-6b43dda412d8","type":"any","value":"sui","key":"chain"},{"id":"0af18c04-2d7a-4bf8-8f0e-eb6873fa6181","type":"any","value":"testnet","key":"network"}]}},"response":[{"id":"9981ee6e-ac7e-4328-bdda-83853a011149","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"image_url\": \"https://storage.mirrorworld.fun/nft/10.png\",\n    \"collection_address\": \"0x0af7a593a95904f5343a089466cd914766b7313db69dc6b37121eaa457898a91\",\n    \"name\": \"MINT\",\n    \"description\": \"New mint\",\n    \"attributes\": []\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/mint/nft","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","mint","nft"],"variable":[{"key":"chain","value":"sui"},{"key":"network","value":"testnet"}]},"description":"**This endpoint is used to mint a new NFT on the collection.\n\n*Required parameters:*\n- **collection_address** | `string` The address of the collection\n- **name** | `string` The name of the NFT to be minted\n- **image_url** | `string` The image url of the NFT to be minted\n- **attributes** | `Attribute[]` Attribute of the NFT to be minted\n\n*Optional parameters:*\n- **description** | `string` The description of the NFT to be minted\n- **to_wallet_address** | `string` The wallet address to which the NFT will be minted. Default is users wallet address\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"Successfully minted NFT\",\n    \"data\": {\n        \"name\": \"MINT\",\n        \"description\": \"New mint\",\n        \"image_url\": \"https://storage.mirrorworld.fun/nft/10.png\",\n        \"attributes\": [],\n        \"digest\": \"HtMK9mCWPdnuBSwhtQt3To1SNJeD7DPRhhfXbiiqfLow\",\n        \"contract_config_address\": \"0x0af7a593a95904f5343a089466cd914766b7313db69dc6b37121eaa457898a91\",\n        \"to_wallet_address\": \"0x824ea1de5c87bb2c431edc69fd15781f4f4d62fc1d88c58e8c11043947164d8d\",\n        \"fee_payer\": \"0x824ea1de5c87bb2c431edc69fd15781f4f4d62fc1d88c58e8c11043947164d8d\",\n        \"nft_object_id\": \"0x8c9cc2d16368e784b9073b9b7f62f2c18bf5c24e098280aa02468257d9982343\",\n        \"nft_object_owner\": \"0x824ea1de5c87bb2c431edc69fd15781f4f4d62fc1d88c58e8c11043947164d8d\",\n        \"user_id\": 7026,\n        \"client_id\": \"7S470Fx-gl1Poyijt-n7o2yefbWz8ZDj3knU.xUExegr1.mirrorworld.fun\"\n    }\n}"}],"_postman_id":"a9b5a54a-77d2-4707-bd4b-edf126f04553"}],"id":"813d797b-14c6-41ce-9637-8c254bd3983e","_postman_id":"813d797b-14c6-41ce-9637-8c254bd3983e","description":""},{"name":"Rage","item":[{"name":"Query NFT","id":"f0c46cd7-e64f-48cb-9ce0-006666a11107","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/rage-effect/:nft_object_id","description":"<p><strong>This endpoint is used to get an NFT by nft_object_id</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>nft_object_id</strong> | <code>string</code> The id address of the NFT</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","asset","rage-effect",":nft_object_id"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"3bb6332f-5f4a-4e44-a966-54b2be9cff74","type":"any","value":"sui","key":"chain"},{"id":"e7e101ee-94c5-4c85-a0cc-7d2289a64d08","type":"any","value":"testnet","key":"network"},{"id":"1e6e6821-0d83-4890-8882-347185ca2ac2","description":{"content":"<p>Nft token id for nft</p>\n","type":"text/plain"},"type":"any","value":"0x0a37026dbff6164319dd54b25c357baec53040d2","key":"nft_object_id"}]}},"response":[{"id":"90f7640b-13cb-4550-9d4a-747ea6f071ce","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/rage-effect/:nft_object_id","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","rage-effect",":nft_object_id"],"variable":[{"key":"chain","value":"sui"},{"key":"network","value":"testnet"},{"key":"nft_object_id","value":"0x0a37026dbff6164319dd54b25c357baec53040d2","description":"Nft token id for nft"}]},"description":"**This endpoint is used to get an NFT by nft_object_id**\n\n*Required parameters:*\n- **nft_object_id** | `string` The id address of the NFT\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"\",\n    \"data\": []\n}"}],"_postman_id":"f0c46cd7-e64f-48cb-9ce0-006666a11107"},{"name":"Mint Rage Effect NFT","id":"51700d82-c288-4d7b-9196-350ba7909d25","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"image_url\": \"https://storage.mirrorworld.fun/nft/10.png\",\n    \"name\": \"MINT\",\n    \"description\": \"New mint\",\n    \"metadata_url\": \"\",\n    \"to_wallet_address\": \"0x824ea1de5c87bb2c431edc69fd15781f4f4d62fc1d88c58e8c11043947164d8d\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/rage-effect/mint","description":"<p>**This endpoint is used to mint a new Rage Effect NFT.</p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>name</strong> | <code>string</code> The name of the NFT to be minted</li>\n<li><strong>description</strong> | <code>string</code> The name of the NFT to be minted</li>\n<li><strong>image_url</strong> | <code>string</code> The image url of the NFT to be minted</li>\n<li><strong>metadata_url</strong> | <code>string</code> The metadata url of the NFT to be minted</li>\n<li><strong>to_wallet_address</strong> | <code>string</code> The metadata url of the NFT to be minted</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","asset","rage-effect","mint"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"f1ddd335-e203-4abf-afe2-829c43f495dc","type":"any","value":"sui","key":"chain"},{"id":"bb94c679-29d2-4878-af16-06c1437172fc","type":"any","value":"testnet","key":"network"}]}},"response":[{"id":"299472d7-d34e-419e-831e-605f14ba011c","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"image_url\": \"https://storage.mirrorworld.fun/nft/10.png\",\n    \"name\": \"MINT\",\n    \"description\": \"New mint\",\n    \"metadata_url\": \"\",\n    \"to_wallet_address\": \"0x824ea1de5c87bb2c431edc69fd15781f4f4d62fc1d88c58e8c11043947164d8d\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/rage-effect/mint","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","rage-effect","mint"],"variable":[{"key":"chain","value":"sui"},{"key":"network","value":"testnet"}]},"description":"**This endpoint is used to mint a new Rage Effect NFT.\n\n*Required parameters:*\n- **name** | `string` The name of the NFT to be minted\n- **description** | `string` The name of the NFT to be minted\n- **image_url** | `string` The image url of the NFT to be minted\n- **metadata_url** | `string` The metadata url of the NFT to be minted\n- **to_wallet_address** | `string` The metadata url of the NFT to be minted\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"Successfully minted NFT\",\n    \"data\": {\n        \"id\": \"0x8c9cc2d16368e784b9073b9b7f62f2c18bf5c24e098280aa02468257d9982343\",\n        \"url\": \"\",\n        \"name\": \"MINT\",\n        \"description\": \"New mint\",\n        \"owner_address\": \"0x824ea1de5c87bb2c431edc69fd15781f4f4d62fc1d88c58e8c11043947164d8d\",\n        \"package_module\": \"\",\n        \"package_module_class_name\": \"\",\n        \"collection_package_id\": \"\",\n        \"bag_id\": \"\",\n        \"attributes\": []\n    }\n}"}],"_postman_id":"51700d82-c288-4d7b-9196-350ba7909d25"}],"id":"23b648a5-89f4-44be-a672-95990b0b78c9","_postman_id":"23b648a5-89f4-44be-a672-95990b0b78c9","description":""},{"name":"Search","item":[{"name":"Query NFT","id":"035f7e3f-66f5-4583-9640-f1fa1f2ea6f6","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/nft/:nft_object_id","description":"<p><strong>This endpoint is used to get an NFT by nft_object_id</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>nft_object_id</strong> | <code>string</code> The id address of the NFT</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","asset","nft",":nft_object_id"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"b5237096-21d1-43cd-ab17-a6430f2f30ef","type":"any","value":"sui","key":"chain"},{"id":"03b98db4-e21c-48a3-be3e-548eced1d72e","type":"any","value":"testnet","key":"network"},{"id":"618c8038-75bd-4bf0-9d9d-03355392532c","description":{"content":"<p>Nft token id for nft</p>\n","type":"text/plain"},"type":"any","value":"0x0a37026dbff6164319dd54b25c357baec53040d2","key":"nft_object_id"}]}},"response":[{"id":"84fa6c4c-ee9c-47c1-9b81-2d001ab0cba1","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/nft/:nft_object_id","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","nft",":nft_object_id"],"variable":[{"key":"chain","value":"sui"},{"key":"network","value":"testnet"},{"key":"nft_object_id","value":"0x0a37026dbff6164319dd54b25c357baec53040d2","description":"Nft token id for nft"}]},"description":"**This endpoint is used to get an NFT by nft_object_id**\n\n*Required parameters:*\n- **nft_object_id** | `string` The id address of the NFT\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"\",\n    \"data\": []\n}"}],"_postman_id":"035f7e3f-66f5-4583-9640-f1fa1f2ea6f6"},{"name":"Search NFTs by owner address","id":"cea74ea2-26a5-4106-98ef-4e565e289a9f","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"owner_address\": \"0x9646986b72099C9bEB620572FdbFda8286511172\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/nft/owner","description":"<p><strong>This endpoint is used to search NFTs by owner address</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>owner_address</strong> | <code>string</code> The address of NFTs holder</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","asset","nft","owner"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"62b64247-a0ce-4a5b-8858-5f54b6905edc","type":"any","value":"sui","key":"chain"},{"id":"bb711584-1953-4426-8af1-93faadcda5f6","type":"any","value":"testnet","key":"network"}]}},"response":[{"id":"3dc4899e-9211-426f-8629-3ceea1bba27e","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"owner_address\": \"0x9646986b72099C9bEB620572FdbFda8286511172\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/nft/owner","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","nft","owner"],"variable":[{"key":"chain","value":"sui"},{"key":"network","value":"testnet"}]},"description":"**This endpoint is used to search NFTs by owner address**\n\n*Required parameters:*\n- **owner_address** | `string` The address of NFTs holder\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"\",\n    \"data\": []\n}"}],"_postman_id":"cea74ea2-26a5-4106-98ef-4e565e289a9f"},{"name":"Search NFTs","id":"4cee2813-e319-46e6-8983-0ad39c831da4","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"nft_object_ids\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/nft/mints","description":"<p><strong>This endpoint is used to search NFTs by object ids</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>nft_object_ids</strong> | <code>string[]</code> The list of NFT object ids to be searched.</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","asset","nft","mints"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"6829e28f-27c8-492e-89df-22ab827c9e9a","type":"any","value":"sui","key":"chain"},{"id":"22461e0b-2c71-40d9-9059-0bef340be58b","type":"any","value":"testnet","key":"network"}]}},"response":[{"id":"42d6b748-32ca-41d7-a993-7739d32d42c5","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"nft_object_ids\": []\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/nft/mints","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","nft","mints"],"variable":[{"key":"chain","value":"sui"},{"key":"network","value":"testnet"}]},"description":"**This endpoint is used to search NFTs by object ids**\n\n*Required parameters:*\n- **nft_object_ids** | `string[]` The list of NFT object ids to be searched.\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"\",\n    \"data\": []\n}"}],"_postman_id":"4cee2813-e319-46e6-8983-0ad39c831da4"}],"id":"588258fe-0c01-401a-ba9f-1d3c13864208","_postman_id":"588258fe-0c01-401a-ba9f-1d3c13864208","description":""}],"id":"0cbdaf26-787f-4772-9a75-14036d2a7669","_postman_id":"0cbdaf26-787f-4772-9a75-14036d2a7669","description":""},{"name":"Evm","item":[{"name":"Auction","item":[{"name":"Buy NFT on the marketplace","id":"9d077b23-d2f7-4973-98d1-2ea5d1a6064b","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"x-authorization-token","value":"\"<authorization token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collection_address\": \"0x0a37026DBFf6164319Dd54b25c357BAeC53040d2\",\n    \"token_id\": 0,\n    \"price\": 0.1,\n    \"marketplace_address\": \"0xAeAd331622371228A0388E8D4909aC77681AF1b8\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/auction/buy","description":"<p><strong>This endpoint is used to buy an NFT on the marketplace</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>collection_address</strong> | <code>string</code> The address of the collection</li>\n<li><strong>token_id</strong> | <code>integer</code> The token_id of the NFT</li>\n<li><strong>price</strong> | <code>decimal</code> The price of the NFT</li>\n<li><strong>marketplace_address</strong> | <code>string</code> The address of the marketplace</li>\n</ul>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>confirmation</strong> | <code>string</code> The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","asset","auction","buy"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"603f7d4e-da87-478f-ada7-42355d9d8cb8","type":"any","value":"ethereum","key":"chain"},{"id":"189d140e-75e8-4fc7-ae63-0936951fb28d","type":"any","value":"goerli","key":"network"}]}},"response":[{"id":"9bca7146-46e9-427e-9bed-fcb1fc32d82c","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"x-authorization-token","value":"\"<authorization token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collection_address\": \"0x0a37026DBFf6164319Dd54b25c357BAeC53040d2\",\n    \"token_id\": 0,\n    \"price\": 0.1,\n    \"marketplace_address\": \"0xAeAd331622371228A0388E8D4909aC77681AF1b8\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/auction/buy","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","auction","buy"],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"}]},"description":"**This endpoint is used to buy an NFT on the marketplace**\n\n*Required parameters:*\n- **collection_address** | `string` The address of the collection\n- **token_id** | `integer` The token_id of the NFT\n- **price** | `decimal` The price of the NFT\n- **marketplace_address** | `string` The address of the marketplace\n\n*Optional parameters:*\n- **confirmation** | `string` The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"successfully listed nft\",\n    \"data\": {\n        \"nft\": {\n            \"token_id\": \"0\",\n            \"contract_address\": \"0x0a37026DBFf6164319Dd54b25c357BAeC53040d2\",\n            \"url\": \"\",\n            \"metadata\": \"\",\n            \"contract_type\": \"erc1155\"\n        },\n        \"receipt_type\": \"buy\",\n        \"order_status\": \"filled\",\n        \"seller\": \"0x9646986b72099C9bEB620572FdbFda8286511172\",\n        \"buyer\": \"0x9646986b72099C9bEB620572FdbFda8286511172\",\n        \"price\": \"0.1\",\n        \"amount\": \"1\",\n        \"marketplace_address\": \"0xAeAd331622371228A0388E8D4909aC77681AF1b8\",\n        \"order_hash\": \"0x25dee35543fee304545e2b5ad42f6ab1d0c1cd3fc69f762fe99a6ca020d399d1\",\n        \"chain\": \"ethereum\",\n        \"network\": \"goerli\"\n    }\n}"}],"_postman_id":"9d077b23-d2f7-4973-98d1-2ea5d1a6064b"},{"name":"Cancel NFT listing on the marketplace","id":"3b0272dc-2824-4fed-813f-07294b146124","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"x-authorization-token","value":"\"<authorization token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collection_address\": \"0x0a37026DBFf6164319Dd54b25c357BAeC53040d2\",\n    \"token_id\": 0,\n    \"marketplace_address\": \"0xAeAd331622371228A0388E8D4909aC77681AF1b8\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/auction/cancel","description":"<p><strong>This endpoint is used to cancel an NFT listing on the marketplace</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>collection_address</strong> | <code>string</code> The address of the collection</li>\n<li><strong>token_id</strong> | <code>integer</code> The token_id of the NFT</li>\n<li><strong>marketplace_address</strong> | <code>string</code> The address of the marketplace</li>\n</ul>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>confirmation</strong> | <code>string</code> The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","asset","auction","cancel"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"f9029fae-66b5-41c4-a92a-2cf21e0f1b10","type":"any","value":"ethereum","key":"chain"},{"id":"753ccbba-7954-40fe-9874-37468db99c0b","type":"any","value":"goerli","key":"network"}]}},"response":[{"id":"762892c0-8f9d-4b9d-abfc-b3fbc07be775","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"x-authorization-token","value":"\"<authorization token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collection_address\": \"0x0a37026DBFf6164319Dd54b25c357BAeC53040d2\",\n    \"token_id\": 0,\n    \"marketplace_address\": \"0xAeAd331622371228A0388E8D4909aC77681AF1b8\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/auction/cancel","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","auction","cancel"],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"}]},"description":"**This endpoint is used to cancel an NFT listing on the marketplace**\n\n*Required parameters:*\n- **collection_address** | `string` The address of the collection\n- **token_id** | `integer` The token_id of the NFT\n- **marketplace_address** | `string` The address of the marketplace\n\n*Optional parameters:*\n- **confirmation** | `string` The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"successfully listed nft\",\n    \"data\": {\n        \"nft\": {\n            \"token_id\": \"0\",\n            \"contract_address\": \"0x0a37026DBFf6164319Dd54b25c357BAeC53040d2\",\n            \"url\": \"\",\n            \"metadata\": \"\",\n            \"contract_type\": \"erc1155\"\n        },\n        \"receipt_type\": \"cancel\",\n        \"order_status\": \"cancelled\",\n        \"seller\": \"0x9646986b72099C9bEB620572FdbFda8286511172\",\n        \"price\": \"0.1\",\n        \"amount\": \"1\",\n        \"marketplace_address\": \"0xAeAd331622371228A0388E8D4909aC77681AF1b8\",\n        \"order_hash\": \"0x25dee35543fee304545e2b5ad42f6ab1d0c1cd3fc69f762fe99a6ca020d399d1\",\n        \"chain\": \"ethereum\",\n        \"network\": \"goerli\"\n    }\n}"}],"_postman_id":"3b0272dc-2824-4fed-813f-07294b146124"},{"name":"List NFT on the marketplace","id":"5ecd1983-f808-4695-8631-b454770f7481","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"x-authorization-token","value":"\"<authorization token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collection_address\": \"0x0a37026DBFf6164319Dd54b25c357BAeC53040d2\",\n    \"token_id\": 0,\n    \"price\": 0.1,\n    \"marketplace_address\": \"0xAeAd331622371228A0388E8D4909aC77681AF1b8\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/auction/list","description":"<p><strong>This endpoint is used to list an NFT on the marketplace</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>collection_address</strong> | <code>string</code> The address of the collection</li>\n<li><strong>token_id</strong> | <code>integer</code> The token_id of the NFT</li>\n<li><strong>price</strong> | <code>decimal</code> The price of the NFT</li>\n<li><strong>marketplace_address</strong> | <code>string</code> The address of the marketplace</li>\n</ul>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>confirmation</strong> | <code>string</code> The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","asset","auction","list"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"31b0f721-9384-4cac-bf6d-dda8a1db7900","type":"any","value":"ethereum","key":"chain"},{"id":"0de1d4ff-434c-4569-96b3-a7817c7e166f","type":"any","value":"goerli","key":"network"}]}},"response":[{"id":"b271aae1-e93a-493c-a0ad-4cd1a4b5c763","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"x-authorization-token","value":"\"<authorization token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collection_address\": \"0x0a37026DBFf6164319Dd54b25c357BAeC53040d2\",\n    \"token_id\": 0,\n    \"price\": 0.1,\n    \"marketplace_address\": \"0xAeAd331622371228A0388E8D4909aC77681AF1b8\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/auction/list","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","auction","list"],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"}]},"description":"**This endpoint is used to list an NFT on the marketplace**\n\n*Required parameters:*\n- **collection_address** | `string` The address of the collection\n- **token_id** | `integer` The token_id of the NFT\n- **price** | `decimal` The price of the NFT\n- **marketplace_address** | `string` The address of the marketplace\n\n*Optional parameters:*\n- **confirmation** | `string` The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"successfully listed nft\",\n    \"data\": {\n        \"nft\": {\n            \"token_id\": \"0\",\n            \"contract_address\": \"0x0a37026DBFf6164319Dd54b25c357BAeC53040d2\",\n            \"url\": \"\",\n            \"metadata\": \"\",\n            \"contract_type\": \"erc1155\"\n        },\n        \"receipt_type\": \"list\",\n        \"order_status\": \"listed\",\n        \"seller\": \"0x9646986b72099C9bEB620572FdbFda8286511172\",\n        \"price\": \"0.1\",\n        \"amount\": \"1\",\n        \"marketplace_address\": \"0xAeAd331622371228A0388E8D4909aC77681AF1b8\",\n        \"order_hash\": \"0x25dee35543fee304545e2b5ad42f6ab1d0c1cd3fc69f762fe99a6ca020d399d1\",\n        \"chain\": \"ethereum\",\n        \"network\": \"goerli\"\n    }\n}"}],"_postman_id":"5ecd1983-f808-4695-8631-b454770f7481"},{"name":"Transfer NFT to another wallet","id":"cb7ee2d0-9c95-4df5-b7fb-7d7d12967d36","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"x-authorization-token","value":"\"<authorization token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collection_address\": \"0x0a37026DBFf6164319Dd54b25c357BAeC53040d2\",\n    \"token_id\": 0,\n    \"to_wallet_address\": \"0xa5DcC6f79dF52C5A8A03fF9ca5Feb4aC26fEEa34\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/auction/transfer","description":"<p><strong>This endpoint is used to transfer an NFT to another wallet</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>collection_address</strong> | <code>string</code> The address of the collection</li>\n<li><strong>token_id</strong> | <code>integer</code> The token_id of the NFT</li>\n<li><strong>to_wallet_address</strong> | <code>string</code> The address of the wallet to transfer the NFT to</li>\n</ul>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>confirmation</strong> | <code>string</code> The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","asset","auction","transfer"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"eab4af30-c6e3-4d06-91d4-d42570aed987","type":"any","value":"ethereum","key":"chain"},{"id":"f249a97f-68fa-4253-b809-83f946724b4d","type":"any","value":"goerli","key":"network"}]}},"response":[{"id":"829ea769-fbd5-4d81-bc3a-68939725b0cb","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"x-authorization-token","value":"\"<authorization token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collection_address\": \"0x0a37026DBFf6164319Dd54b25c357BAeC53040d2\",\n    \"token_id\": 0,\n    \"to_wallet_address\": \"0xa5DcC6f79dF52C5A8A03fF9ca5Feb4aC26fEEa34\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/auction/transfer","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","auction","transfer"],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"}]},"description":"**This endpoint is used to transfer an NFT to another wallet**\n\n*Required parameters:*\n- **collection_address** | `string` The address of the collection\n- **token_id** | `integer` The token_id of the NFT\n- **to_wallet_address** | `string` The address of the wallet to transfer the NFT to\n\n*Optional parameters:*\n- **confirmation** | `string` The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"successfully listed nft\",\n    \"data\": {\n        \"from\": \"0xC7C6FAcDf702cd1a7c201686fB9cCb8c5AaCCc68\",\n        \"to\": \"0xa5DcC6f79dF52C5A8A03fF9ca5Feb4aC26fEEa34\",\n        \"contract_address\": \"0x445B99fBc951f33B3527d25953F59Ee5cBC14bF3\",\n        \"contract_type\": \"erc1155\",\n        \"token_id\": \"0\",\n        \"amount\": 1,\n        \"transaction_hash\": \"0x46680f7a8582da8cb5f12b0aa8d22dfa12671f35330cfc9450479f0af4d1d50f\",\n        \"chain\": \"ethereum\",\n        \"network\": \"goerli\"\n    }\n}"}],"_postman_id":"cb7ee2d0-9c95-4df5-b7fb-7d7d12967d36"},{"name":"Create list NFT on the marketplace order for external wallet","id":"c42b7b14-7ab7-4c14-9661-d2c877e78b58","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"x-authorization-token","value":"\"<authorization token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collection_address\": \"0x0a37026DBFf6164319Dd54b25c357BAeC53040d2\",\n    \"token_id\": 0,\n    \"price\": 0.1,\n    \"marketplace_address\": \"0xAeAd331622371228A0388E8D4909aC77681AF1b8\",\n    \"from_wallet_address\": \"0xa5DcC6f79dF52C5A8A03fF9ca5Feb4aC26fEEa34\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/auction/list/transaction","description":"<p><strong>This endpoint is used to create a raw tx to list an NFT on the marketplace. Tx can be signed with external wallet</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>collection_address</strong> | <code>string</code> The address of the collection</li>\n<li><strong>token_id</strong> | <code>integer</code> The token_id of the NFT</li>\n<li><strong>price</strong> | <code>decimal</code> The price of the NFT</li>\n<li><strong>marketplace_address</strong> | <code>string</code> The address of the marketplace</li>\n<li><strong>from_wallet_address</strong> | <code>string</code> The address of the wallet to list the NFT from</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","asset","auction","list","transaction"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"c1725cc0-f72a-4e85-952e-67045958b86a","type":"any","value":"ethereum","key":"chain"},{"id":"7d3ad526-7f8f-45af-9c25-f0d250df322b","type":"any","value":"goerli","key":"network"}]}},"response":[{"id":"452e9e97-a7e3-4705-b4c2-7d3752921f85","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"x-authorization-token","value":"\"<authorization token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collection_address\": \"0x0a37026DBFf6164319Dd54b25c357BAeC53040d2\",\n    \"token_id\": 0,\n    \"price\": 0.1,\n    \"marketplace_address\": \"0xAeAd331622371228A0388E8D4909aC77681AF1b8\",\n    \"from_wallet_address\": \"0xa5DcC6f79dF52C5A8A03fF9ca5Feb4aC26fEEa34\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/auction/list/transaction","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","auction","list","transaction"],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"}]},"description":"**This endpoint is used to create a raw tx to list an NFT on the marketplace. Tx can be signed with external wallet**\n\n*Required parameters:*\n- **collection_address** | `string` The address of the collection\n- **token_id** | `integer` The token_id of the NFT\n- **price** | `decimal` The price of the NFT\n- **marketplace_address** | `string` The address of the marketplace\n- **from_wallet_address** | `string` The address of the wallet to list the NFT from\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"successfully generated list nft transaction\",\n    \"data\": {\n        \"type\": \"sign_order\",\n        \"order_msg\": \"\",\n        \"action_id\": 1\n    }\n}"}],"_postman_id":"c42b7b14-7ab7-4c14-9661-d2c877e78b58"},{"name":"Submit signed NFT listing order on the marketplace","id":"3551fe36-7684-4c63-a599-59286eeceb4e","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"x-authorization-token","value":"\"<authorization token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"action_id\": 1,\n    \"signature\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/auction/list/submit","description":"<p><strong>This endpoint is used to submit NFT listing after order is signed with external wallet</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>action_id</strong> | <code>integer</code> Unique id of the action that was returned from the list-transaction endpoint</li>\n<li><strong>signature</strong> | <code>string</code> Signature of the order_msg that was obtained by signing order with external wallet</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","asset","auction","list","submit"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"66c2a8e1-a04a-4c7e-83b3-8d2813f1432a","type":"any","value":"ethereum","key":"chain"},{"id":"e6b5ff1f-7572-405b-b2b2-7963d0070762","type":"any","value":"goerli","key":"network"}]}},"response":[{"id":"58412188-79f1-42b5-bd28-1c7acda484c4","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"x-authorization-token","value":"\"<authorization token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"action_id\": 1,\n    \"signature\": \"\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/auction/list/submit","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","auction","list","submit"],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"}]},"description":"**This endpoint is used to submit NFT listing after order is signed with external wallet**\n\n*Required parameters:*\n- **action_id** | `integer` Unique id of the action that was returned from the list-transaction endpoint\n- **signature** | `string` Signature of the order_msg that was obtained by signing order with external wallet\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"successfully listed nft\",\n    \"data\": {\n        \"nft\": {\n            \"token_id\": \"0\",\n            \"contract_address\": \"0x0a37026DBFf6164319Dd54b25c357BAeC53040d2\",\n            \"url\": \"\",\n            \"metadata\": \"\",\n            \"contract_type\": \"erc1155\"\n        },\n        \"receipt_type\": \"list\",\n        \"order_status\": \"listed\",\n        \"seller\": \"0x9646986b72099C9bEB620572FdbFda8286511172\",\n        \"price\": \"0.1\",\n        \"amount\": \"1\",\n        \"marketplace_address\": \"0xAeAd331622371228A0388E8D4909aC77681AF1b8\",\n        \"order_hash\": \"0x25dee35543fee304545e2b5ad42f6ab1d0c1cd3fc69f762fe99a6ca020d399d1\",\n        \"chain\": \"ethereum\",\n        \"network\": \"goerli\"\n    }\n}"}],"_postman_id":"3551fe36-7684-4c63-a599-59286eeceb4e"},{"name":"Buy NFT on the marketplace","id":"39f8e072-f332-460b-ab07-517825111dc9","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"x-authorization-token","value":"\"<authorization token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collection_address\": \"0x0a37026DBFf6164319Dd54b25c357BAeC53040d2\",\n    \"token_id\": 0,\n    \"price\": 0.1,\n    \"marketplace_address\": \"0xAeAd331622371228A0388E8D4909aC77681AF1b8\",\n    \"from_wallet_address\": \"0xa5DcC6f79dF52C5A8A03fF9ca5Feb4aC26fEEa34\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/auction/buy/transaction","description":"<p><strong>This endpoint is used to create a raw tx for buying an NFT on the marketplace</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>collection_address</strong> | <code>string</code> The address of the collection</li>\n<li><strong>token_id</strong> | <code>integer</code> The token_id of the NFT</li>\n<li><strong>price</strong> | <code>decimal</code> The price of the NFT</li>\n<li><strong>marketplace_address</strong> | <code>string</code> The address of the marketplace</li>\n<li><strong>from_wallet_address</strong> | <code>string</code> The address of the wallet to buy the NFT from</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","asset","auction","buy","transaction"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"56af13b7-415a-4579-a75f-28a9d2e8354a","type":"any","value":"ethereum","key":"chain"},{"id":"6e12ec70-ad57-46dc-99f7-a0dc63e99ffa","type":"any","value":"goerli","key":"network"}]}},"response":[{"id":"515f009c-8565-4a06-9177-cf0ab4b62081","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"x-authorization-token","value":"\"<authorization token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collection_address\": \"0x0a37026DBFf6164319Dd54b25c357BAeC53040d2\",\n    \"token_id\": 0,\n    \"price\": 0.1,\n    \"marketplace_address\": \"0xAeAd331622371228A0388E8D4909aC77681AF1b8\",\n    \"from_wallet_address\": \"0xa5DcC6f79dF52C5A8A03fF9ca5Feb4aC26fEEa34\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/auction/buy/transaction","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","auction","buy","transaction"],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"}]},"description":"**This endpoint is used to create a raw tx for buying an NFT on the marketplace**\n\n*Required parameters:*\n- **collection_address** | `string` The address of the collection\n- **token_id** | `integer` The token_id of the NFT\n- **price** | `decimal` The price of the NFT\n- **marketplace_address** | `string` The address of the marketplace\n- **from_wallet_address** | `string` The address of the wallet to buy the NFT from\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"successfully generated buy nft transaction\",\n    \"data\": {\n        \"tx\": {\n            \"from\": \"0xa5DcC6f79dF52C5A8A03fF9ca5Feb4aC26fEEa34\",\n            \"to\": \"\",\n            \"data\": \"\",\n            \"gas\": \"\"\n        },\n        \"type\": \"buy\"\n    }\n}"}],"_postman_id":"39f8e072-f332-460b-ab07-517825111dc9"},{"name":"Generate cancel NFT listing on the marketplace transaction","id":"4715db10-9d51-4f38-84d9-2a745090eda6","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"x-authorization-token","value":"\"<authorization token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collection_address\": \"0x0a37026DBFf6164319Dd54b25c357BAeC53040d2\",\n    \"token_id\": 0,\n    \"marketplace_address\": \"0xAeAd331622371228A0388E8D4909aC77681AF1b8\",\n    \"from_wallet_address\": \"0xa5DcC6f79dF52C5A8A03fF9ca5Feb4aC26fEEa34\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/auction/cancel/transaction","description":"<p><strong>This endpoint is used to cancel NFT listing on the marketplace, after order is executed with external wallet</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>collection_address</strong> | <code>string</code> The address of the collection</li>\n<li><strong>token_id</strong> | <code>integer</code> The token_id of the NFT</li>\n<li><strong>marketplace_address</strong> | <code>string</code> The address of the marketplace</li>\n<li><strong>from_wallet_address</strong> | <code>string</code> The address of the wallet to buy the NFT from</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","asset","auction","cancel","transaction"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"fd145d70-dbbe-484c-bd70-fe6b5799282d","type":"any","value":"ethereum","key":"chain"},{"id":"29dc977f-a31b-4760-8243-899db65a6921","type":"any","value":"goerli","key":"network"}]}},"response":[{"id":"9810b707-7d53-4a7d-b0d9-47af90625c12","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"x-authorization-token","value":"\"<authorization token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collection_address\": \"0x0a37026DBFf6164319Dd54b25c357BAeC53040d2\",\n    \"token_id\": 0,\n    \"marketplace_address\": \"0xAeAd331622371228A0388E8D4909aC77681AF1b8\",\n    \"from_wallet_address\": \"0xa5DcC6f79dF52C5A8A03fF9ca5Feb4aC26fEEa34\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/auction/cancel/transaction","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","auction","cancel","transaction"],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"}]},"description":"**This endpoint is used to cancel NFT listing on the marketplace, after order is executed with external wallet**\n\n*Required parameters:*\n- **collection_address** | `string` The address of the collection\n- **token_id** | `integer` The token_id of the NFT\n- **marketplace_address** | `string` The address of the marketplace\n- **from_wallet_address** | `string` The address of the wallet to buy the NFT from\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"successfully generated list nft transaction\",\n    \"data\": {\n        \"tx\": {\n            \"from\": \"0xa5DcC6f79dF52C5A8A03fF9ca5Feb4aC26fEEa34\",\n            \"to\": \"\",\n            \"data\": \"\",\n            \"gas\": \"\"\n        },\n        \"type\": \"cancel\"\n    }\n}"}],"_postman_id":"4715db10-9d51-4f38-84d9-2a745090eda6"},{"name":"Submit cancel NFT listing on the marketplace transaction","id":"784c2748-f537-4d95-b233-d36ebf9f479c","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"x-authorization-token","value":"\"<authorization token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collection_address\": \"0x0a37026DBFf6164319Dd54b25c357BAeC53040d2\",\n    \"token_id\": 0,\n    \"marketplace_address\": \"0xAeAd331622371228A0388E8D4909aC77681AF1b8\",\n    \"from_wallet_address\": \"0xa5DcC6f79dF52C5A8A03fF9ca5Feb4aC26fEEa34\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/auction/cancel/submit","description":"<p><strong>This endpoint is used to submitcreate a raw tx for canceling a listing of NFT on the marketplace</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>collection_address</strong> | <code>string</code> The address of the collection</li>\n<li><strong>token_id</strong> | <code>integer</code> The token_id of the NFT</li>\n<li><strong>marketplace_address</strong> | <code>string</code> The address of the marketplace</li>\n<li><strong>from_wallet_address</strong> | <code>string</code> The address of the wallet to buy the NFT from</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","asset","auction","cancel","submit"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"52dfb7cd-5210-492e-9fc6-a98afe756d10","type":"any","value":"ethereum","key":"chain"},{"id":"da1724d5-75b0-4f38-befe-6220b8d8a6f0","type":"any","value":"goerli","key":"network"}]}},"response":[{"id":"cd70fa1a-b82b-485f-ade6-f3bcdca94753","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"x-authorization-token","value":"\"<authorization token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collection_address\": \"0x0a37026DBFf6164319Dd54b25c357BAeC53040d2\",\n    \"token_id\": 0,\n    \"marketplace_address\": \"0xAeAd331622371228A0388E8D4909aC77681AF1b8\",\n    \"from_wallet_address\": \"0xa5DcC6f79dF52C5A8A03fF9ca5Feb4aC26fEEa34\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/auction/cancel/submit","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","auction","cancel","submit"],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"}]},"description":"**This endpoint is used to submitcreate a raw tx for canceling a listing of NFT on the marketplace**\n\n*Required parameters:*\n- **collection_address** | `string` The address of the collection\n- **token_id** | `integer` The token_id of the NFT\n- **marketplace_address** | `string` The address of the marketplace\n- **from_wallet_address** | `string` The address of the wallet to buy the NFT from\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"successfully canceled nft listing\",\n    \"data\": {\n        \"nft\": {\n            \"token_id\": \"0\",\n            \"contract_address\": \"0x0a37026DBFf6164319Dd54b25c357BAeC53040d2\",\n            \"url\": \"\",\n            \"metadata\": \"\",\n            \"contract_type\": \"erc1155\"\n        },\n        \"receipt_type\": \"cancel\",\n        \"order_status\": \"cancelled\",\n        \"seller\": \"0xa5DcC6f79dF52C5A8A03fF9ca5Feb4aC26fEEa34\",\n        \"price\": \"0.1\",\n        \"amount\": \"1\",\n        \"marketplace_address\": \"0xAeAd331622371228A0388E8D4909aC77681AF1b8\",\n        \"order_hash\": \"0x25dee35543fee304545e2b5ad42f6ab1d0c1cd3fc69f762fe99a6ca020d399d1\",\n        \"chain\": \"ethereum\",\n        \"network\": \"goerli\"\n    }\n}"}],"_postman_id":"784c2748-f537-4d95-b233-d36ebf9f479c"},{"name":"Generate transfer NFT to another wallet transaction","id":"86b29d2a-964a-4c01-8f72-ea7eaf3f2727","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"x-authorization-token","value":"\"<authorization token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collection_address\": \"0x0a37026DBFf6164319Dd54b25c357BAeC53040d2\",\n    \"token_id\": 0,\n    \"from_wallet_address\": \"0xa5DcC6f79dF52C5A8A03fF9ca5Feb4aC26fEEa34\",\n    \"to_wallet_address\": \"0xAeAd331622371228A0388E8D4909aC77681AF1b8\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/auction/transfer/transaction","description":"<p><strong>This endpoint is used to transfer NFT to another wallet, after order is executed with external wallet</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>collection_address</strong> | <code>string</code> The address of the collection</li>\n<li><strong>token_id</strong> | <code>integer</code> The token_id of the NFT</li>\n<li><strong>from_wallet_address</strong> | <code>string</code> The address of the wallet that will send NFT</li>\n<li><strong>to_wallet_address</strong> | <code>string</code> The address of the wallet that will receive NFT</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","asset","auction","transfer","transaction"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"feb755b6-247b-4714-a25f-4edf847dbea0","type":"any","value":"ethereum","key":"chain"},{"id":"8e432acd-7e23-4cd3-b111-02951c303c91","type":"any","value":"goerli","key":"network"}]}},"response":[{"id":"bb828037-4fab-4ac5-ab73-24ddd1eb8e83","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"x-authorization-token","value":"\"<authorization token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collection_address\": \"0x0a37026DBFf6164319Dd54b25c357BAeC53040d2\",\n    \"token_id\": 0,\n    \"from_wallet_address\": \"0xa5DcC6f79dF52C5A8A03fF9ca5Feb4aC26fEEa34\",\n    \"to_wallet_address\": \"0xAeAd331622371228A0388E8D4909aC77681AF1b8\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/auction/transfer/transaction","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","auction","transfer","transaction"],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"}]},"description":"**This endpoint is used to transfer NFT to another wallet, after order is executed with external wallet**\n\n*Required parameters:*\n- **collection_address** | `string` The address of the collection\n- **token_id** | `integer` The token_id of the NFT\n- **from_wallet_address** | `string` The address of the wallet that will send NFT\n- **to_wallet_address** | `string` The address of the wallet that will receive NFT\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"successfully generated transfer nft transaction\",\n    \"data\": {\n        \"tx\": {\n            \"from\": \"0xa5DcC6f79dF52C5A8A03fF9ca5Feb4aC26fEEa34\",\n            \"to\": \"\",\n            \"data\": \"\",\n            \"gas\": \"\"\n        },\n        \"type\": \"transfer\"\n    }\n}"}],"_postman_id":"86b29d2a-964a-4c01-8f72-ea7eaf3f2727"}],"id":"2c7ac172-b2e7-4d4c-97aa-38e42de11922","_postman_id":"2c7ac172-b2e7-4d4c-97aa-38e42de11922","description":""},{"name":"Marketplace","item":[{"name":"Search for marketplaces","id":"56881ce1-673d-42b9-8549-5144ea947608","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/marketplaces","description":"<p><strong>This endpoint is used to search for marketplaces</strong></p>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>page</strong> | <code>integer</code> The page number. Default is 1</li>\n<li><strong>size</strong> | <code>integer</code> The number of results per page. Default is 10</li>\n<li><strong>name</strong> | <code>string</code> The name of the marketplace. Default is all</li>\n<li><strong>authority</strong> | <code>string</code> The authority of the marketplace. Default is all</li>\n<li><strong>seller_fee_basis_points</strong> | <code>integer</code> The seller fee basis points of the marketplace. Default is all</li>\n<li><strong>payment_token</strong> | <code>string</code> The payment token address of the marketplace. Default is all</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","asset","marketplaces"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"9fef1a4b-019c-44d7-b9c7-e8982a37f600","type":"any","value":"ethereum","key":"chain"},{"id":"b6705f50-8e53-405e-8bd5-15a1fb0efa02","type":"any","value":"goerli","key":"network"}]}},"response":[{"id":"9f792e0d-171d-4883-aa33-4fdb8851bf16","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/marketplaces","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","marketplaces"],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"}]},"description":"**This endpoint is used to search for marketplaces**\n\n*Optional parameters:*\n- **page** | `integer` The page number. Default is 1\n- **size** | `integer` The number of results per page. Default is 10\n- **name** | `string` The name of the marketplace. Default is all\n- **authority** | `string` The authority of the marketplace. Default is all\n- **seller_fee_basis_points** | `integer` The seller fee basis points of the marketplace. Default is all\n- **payment_token** | `string` The payment token address of the marketplace. Default is all\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"Successfully queried marketplaces\",\n    \"data\": {\n        \"count\": 1,\n        \"total_pages\": 1,\n        \"page\": 1,\n        \"data\": []\n    }\n}"}],"_postman_id":"56881ce1-673d-42b9-8549-5144ea947608"},{"name":"Deploy SeaPort marketplace contract","id":"ca97895b-966e-4cdb-8394-27dea7d829c4","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"seller_fee_basis_points\": 0,\n    \"collections\": [],\n    \"storefront\": {\n        \"name\": \"emerald-male\",\n        \"subdomain\": \"https://emerald-male-storefront.com\",\n        \"description\": \"emerald-male marketplace\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/marketplaces/create","description":"<p><strong>This endpoint is used to deploy a SeaPort marketplace contract</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>seller_fee_basis_points</strong> | <code>integer</code> The seller fee basis points</li>\n</ul>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>payment_token</strong> | <code>string</code> The payment token address. Default is null, which means the native token</li>\n<li><strong>storefront</strong> | <code>object</code> The storefront details. Used when deploying a storefront client application<ul>\n<li><strong>name</strong> | <code>string</code> The name of the marketplace</li>\n<li><strong>subdomain</strong> | <code>string</code> Domain where storefront will be hosted</li>\n<li><strong>description</strong> | <code>string</code> The description of the marketplace</li>\n</ul>\n</li>\n<li><strong>collections</strong> | <code>string[]</code> The list of collections to be added to the marketplace. Used when deploying a storefront client application</li>\n<li><strong>confirmation</strong> | <code>string</code> The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","asset","marketplaces","create"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"54d305c2-59af-46c6-8c23-c6f63d2eaa9d","type":"any","value":"ethereum","key":"chain"},{"id":"c7077786-db84-49c7-9da4-479c1c2be92c","type":"any","value":"goerli","key":"network"}]}},"response":[{"id":"9484510d-dfe8-4e74-a3b1-4367b0f3bdd9","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"seller_fee_basis_points\": 0,\n    \"collections\": [],\n    \"storefront\": {\n        \"name\": \"emerald-male\",\n        \"subdomain\": \"https://emerald-male-storefront.com\",\n        \"description\": \"emerald-male marketplace\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/marketplaces/create","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","marketplaces","create"],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"}]},"description":"**This endpoint is used to deploy a SeaPort marketplace contract**\n\n*Required parameters:*\n- **seller_fee_basis_points** | `integer` The seller fee basis points\n\n*Optional parameters:*\n- **payment_token** | `string` The payment token address. Default is null, which means the native token\n- **storefront** | `object` The storefront details. Used when deploying a storefront client application\n  - **name** | `string` The name of the marketplace\n  - **subdomain** | `string` Domain where storefront will be hosted\n  - **description** | `string` The description of the marketplace\n- **collections** | `string[]` The list of collections to be added to the marketplace. Used when deploying a storefront client application\n- **confirmation** | `string` The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"Successfully queried marketplaces\",\n    \"data\": {\n        \"name\": \"emerald-male\",\n        \"marketplace_address\": \"0xAeAd331622371228A0388E8D4909aC77681AF1b8\",\n        \"authority\": \"0x9646986b72099C9bEB620572FdbFda8286511172\",\n        \"seller_fee_basis_points\": 0,\n        \"collections\": [],\n        \"status\": \"done\"\n    }\n}"}],"_postman_id":"ca97895b-966e-4cdb-8394-27dea7d829c4"},{"name":"Update existing marketplace details","id":"3c4d12a1-6d12-4238-8b48-5f3ffdab38d6","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"seller_fee_basis_points\": 5,\n    \"collections\": [],\n    \"storefront\": {\n        \"name\": \"emerald-male\",\n        \"subdomain\": \"https://emerald-male-storefront.com\",\n        \"description\": \"emerald-male marketplace\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/marketplaces/update","description":"<p><strong>This endpoint is used to update an existing marketplace details</strong></p>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>seller_fee_basis_points</strong> | <code>integer</code> The seller fee basis points</li>\n<li><strong>payment_token</strong> | <code>string</code> The payment token address. Default is null, which means the native token</li>\n<li><strong>storefront</strong> | <code>object</code> The storefront details. Used when deploying a storefront client application<ul>\n<li><strong>name</strong> | <code>string</code> The name of the marketplace</li>\n<li><strong>subdomain</strong> | <code>string</code> Domain where storefront will be hosted</li>\n<li><strong>description</strong> | <code>string</code> The description of the marketplace</li>\n</ul>\n</li>\n<li><strong>collections</strong> | <code>string[]</code> The list of collections to be added to the marketplace. Used when deploying a storefront client application</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","asset","marketplaces","update"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"53a24031-8474-4cc7-9511-007505f2b5b5","type":"any","value":"ethereum","key":"chain"},{"id":"b6011836-0a9c-4423-acb8-fc7e0fa56132","type":"any","value":"goerli","key":"network"}]}},"response":[{"id":"2fed5927-b52c-41df-9344-f5980f9729cc","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"seller_fee_basis_points\": 5,\n    \"collections\": [],\n    \"storefront\": {\n        \"name\": \"emerald-male\",\n        \"subdomain\": \"https://emerald-male-storefront.com\",\n        \"description\": \"emerald-male marketplace\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/marketplaces/update","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","marketplaces","update"],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"}]},"description":"**This endpoint is used to update an existing marketplace details**\n\n*Optional parameters:*\n- **seller_fee_basis_points** | `integer` The seller fee basis points\n- **payment_token** | `string` The payment token address. Default is null, which means the native token\n- **storefront** | `object` The storefront details. Used when deploying a storefront client application\n  - **name** | `string` The name of the marketplace\n  - **subdomain** | `string` Domain where storefront will be hosted\n  - **description** | `string` The description of the marketplace\n- **collections** | `string[]` The list of collections to be added to the marketplace. Used when deploying a storefront client application\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"Successfully queried marketplaces\",\n    \"data\": {\n        \"name\": \"emerald-male\",\n        \"marketplace_address\": \"0xAeAd331622371228A0388E8D4909aC77681AF1b8\",\n        \"authority\": \"0x9646986b72099C9bEB620572FdbFda8286511172\",\n        \"seller_fee_basis_points\": 5,\n        \"collections\": [],\n        \"status\": \"done\"\n    }\n}"}],"_postman_id":"3c4d12a1-6d12-4238-8b48-5f3ffdab38d6"}],"id":"71c992b3-e112-497f-a89d-b5caff3eede3","_postman_id":"71c992b3-e112-497f-a89d-b5caff3eede3","description":""},{"name":"Mint","item":[{"name":"Get minted collections","id":"ea944687-b0d2-41ff-ba3d-54555741aec1","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/mint/get-collections","description":"<p><strong>This endpoint is used to fetch collections that user already minted</strong></p>\n","urlObject":{"path":["v2",":chain",":network","asset","mint","get-collections"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"07d079d4-42ff-4561-8411-4c4d55c86d0f","type":"any","value":"ethereum","key":"chain"},{"id":"499ec98d-b8b3-4d73-80d0-023f48615e31","type":"any","value":"goerli","key":"network"}]}},"response":[{"id":"e9e336c0-0187-4b78-90f6-5f6d4fbcdac0","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/mint/get-collections","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","mint","get-collections"],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"}]},"description":"**This endpoint is used to fetch collections that user already minted**\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"\",\n    \"data\": []\n}"}],"_postman_id":"ea944687-b0d2-41ff-ba3d-54555741aec1"},{"name":"Get nfts minted on collection","id":"26fdba1d-c0c9-4f9b-9958-2357ae07bc57","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/mint/get-collection-nfts/:collection_address","description":"<p><strong>This endpoint is used to fetch NFTs on collection that user already minted</strong></p>\n","urlObject":{"path":["v2",":chain",":network","asset","mint","get-collection-nfts",":collection_address"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"80efbc63-1856-4377-84d6-b5bb0821754a","type":"any","value":"ethereum","key":"chain"},{"id":"eab642e5-f34b-42ae-a1bc-6e2aab0ca4bd","type":"any","value":"goerli","key":"network"},{"id":"9a53cca5-9eda-4ded-86b4-cdf3b0c9cdf3","type":"any","value":"0xC6657f2bfCb967a0F329eec6D448dAc209DC5553","key":"collection_address"}]}},"response":[{"id":"e48e8312-8668-496c-a8b7-e917d37cd131","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/mint/get-collection-nfts/:collection_address","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","mint","get-collection-nfts",":collection_address"],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"},{"key":"collection_address","value":"0xC6657f2bfCb967a0F329eec6D448dAc209DC5553"}]},"description":"**This endpoint is used to fetch NFTs on collection that user already minted**\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"\",\n    \"data\": []\n}"}],"_postman_id":"26fdba1d-c0c9-4f9b-9958-2357ae07bc57"},{"name":"Mint a new NFT Collection","id":"f39249e1-70f0-4e38-93cc-cf91ed277a0b","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"url\": \"https://www.funapes.io/api/funana/\",\n    \"contract_type\": \"erc1155\",\n    \"confirmation\": \"finalized\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/mint/collection","description":"<p><strong>This endpoint is used to mint a new NFT collection. The collection can be type ERC1155 or ERC721</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>url</strong> | <code>string</code> The base url for collection NFTs json config files. Full url to individual NFT json configuration will be base_url + token_id</li>\n<li><strong>name</strong> | <code>string</code> The name of the collection</li>\n<li><strong>symbol</strong> | <code>string</code> The symbol of the collection</li>\n</ul>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>contract_type</strong> | <code>string</code> The type of contract to be deployed. Default is erc1155. Allowed values are erc1155 and erc721</li>\n<li><strong>mint_start_id</strong> | <code>integer</code> The starting token_id of the collection. Default is 0</li>\n<li><strong>mint_end_id</strong> | <code>integer</code> The ending token_id of the collection. Default is 0</li>\n<li><strong>mint_amount</strong> | <code>integer</code> The amount of NFTs to be minted. Default is 1. For erc721 collections this value should be 1</li>\n<li><strong>confirmation</strong> | <code>string</code> The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","asset","mint","collection"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"49fa3f5a-7fc2-45c3-8084-062b2183cf46","type":"any","value":"ethereum","key":"chain"},{"id":"e2c76f15-5c95-4316-a020-917d983b2e5e","type":"any","value":"goerli","key":"network"}]}},"response":[{"id":"c4612735-7e1e-4f3e-b829-badc5d4f07e5","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"url\": \"https://www.funapes.io/api/funana/\",\n    \"contract_type\": \"erc1155\",\n    \"confirmation\": \"finalized\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/mint/collection","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","mint","collection"],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"}]},"description":"**This endpoint is used to mint a new NFT collection. The collection can be type ERC1155 or ERC721**\n\n*Required parameters:*\n- **url** | `string` The base url for collection NFTs json config files. Full url to individual NFT json configuration will be base_url + token_id\n- **name** | `string` The name of the collection\n- **symbol** | `string` The symbol of the collection\n\n*Optional parameters:*\n- **contract_type** | `string` The type of contract to be deployed. Default is erc1155. Allowed values are erc1155 and erc721\n- **mint_start_id** | `integer` The starting token_id of the collection. Default is 0\n- **mint_end_id** | `integer` The ending token_id of the collection. Default is 0\n- **mint_amount** | `integer` The amount of NFTs to be minted. Default is 1. For erc721 collections this value should be 1\n- **confirmation** | `string` The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"Successfully minted collection\",\n    \"data\": {\n        \"seed\": \"iOGhWsqWZZRWHJIdNQHKl\",\n        \"hash\": \"0x31df6a226abe98b2db0abafb460ee7eb9855c415ca8ed7639156396be74f0d57\",\n        \"signature\": \"0x081bbc6441c960cc17820a06d27937821e8e2548c099c082f1439840e3d67f8a0f711c7aabcc9a583db1afa4798da56b654d8381b8248e936ace28c48c39bc7b1c\",\n        \"contract_address\": \"0xC6657f2bfCb967a0F329eec6D448dAc209DC5553\",\n        \"contract_type\": \"erc1155\",\n        \"url\": \"https://www.funapes.io/api/funana/\",\n        \"name\": \"\",\n        \"symbol\": \"\",\n        \"creator_address\": \"0x8C041BAa01E1B7236948F4de859409722d2bF7cE\",\n        \"track_mint\": true,\n        \"burn_mint\": true,\n        \"mint_enabled\": true,\n        \"mint_start_id\": 0,\n        \"mint_end_id\": 0,\n        \"mint_amount\": 1,\n        \"status\": \"done\",\n        \"transaction_hash\": \"0xe4d8509c907b4cb359024f01d36a5b2bc26b0421de803acc97dd2850489d0240\"\n    }\n}"}],"_postman_id":"f39249e1-70f0-4e38-93cc-cf91ed277a0b"},{"name":"Mint NFT on the collection","id":"192a7193-38ba-499e-a8d5-580bdb6e4974","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collection_address\": \"0xC6657f2bfCb967a0F329eec6D448dAc209DC5553\",\n    \"token_id\": \"0\",\n    \"confirmation\": \"finalized\",\n    \"to_wallet_address\": \"0xa5DcC6f79dF52C5A8A03fF9ca5Feb4aC26fEEa34\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/mint/nft","description":"<p><strong>This endpoint is used to mint a new NFT on the collection. The collection can be type ERC1155 or ERC721</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>collection_address</strong> | <code>string</code> The address of the collection</li>\n<li><strong>token_id</strong> | <code>integer</code> The token_id of the NFT to be minted</li>\n</ul>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>url</strong> | <code>string</code> Url of NFT json config file. If not specified, it will default to collection's base_url + token_id</li>\n<li><strong>to_wallet_address</strong> | <code>string</code> The wallet address to which the NFT will be minted. Default is users wallet address</li>\n<li><strong>mint_amount</strong> | <code>integer</code> The amount of NFTs to be minted. Default is 1. For erc721 collections this value should be 1</li>\n<li><strong>confirmation</strong> | <code>string</code> The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","asset","mint","nft"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"2c9355a3-cd4d-4997-ad5f-040db3595fb3","type":"any","value":"ethereum","key":"chain"},{"id":"d69f2bc5-6604-47a4-aa10-2069c94de9c0","type":"any","value":"goerli","key":"network"}]}},"response":[{"id":"c37df0c9-d9a5-4fc6-bf8c-f768a47b0d63","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collection_address\": \"0xC6657f2bfCb967a0F329eec6D448dAc209DC5553\",\n    \"token_id\": \"0\",\n    \"confirmation\": \"finalized\",\n    \"to_wallet_address\": \"0xa5DcC6f79dF52C5A8A03fF9ca5Feb4aC26fEEa34\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/mint/nft","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","mint","nft"],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"}]},"description":"**This endpoint is used to mint a new NFT on the collection. The collection can be type ERC1155 or ERC721**\n\n*Required parameters:*\n- **collection_address** | `string` The address of the collection\n- **token_id** | `integer` The token_id of the NFT to be minted\n\n*Optional parameters:*\n- **url** | `string` Url of NFT json config file. If not specified, it will default to collection's base_url + token_id\n- **to_wallet_address** | `string` The wallet address to which the NFT will be minted. Default is users wallet address\n- **mint_amount** | `integer` The amount of NFTs to be minted. Default is 1. For erc721 collections this value should be 1\n- **confirmation** | `string` The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"Successfully minted NFT\",\n    \"data\": {\n        \"seed\": \"U46obMjUS6nEaRcJ9uIHn\",\n        \"hash\": \"0xfe7d98f3d0362e2fb8283c71d6e64668a2ea64aaf6424eca8c6c14d30892d8fd\",\n        \"signature\": \"0x83d851b9c9638803b98020c91c55906d8ff7eadfa12d5d783cbf2818defca8657486655162f97a4ef36d794cd2404397d64387dfe96fc022be4479716a5c66ac1b\",\n        \"creator_address\": \"0x8C041BAa01E1B7236948F4de859409722d2bF7cE\",\n        \"to_wallet_address\": \"0xa5DcC6f79dF52C5A8A03fF9ca5Feb4aC26fEEa34\",\n        \"contract_address\": \"0xC6657f2bfCb967a0F329eec6D448dAc209DC5553\",\n        \"contract_type\": \"erc1155\",\n        \"token_id\": \"0\",\n        \"mint_amount\": 1,\n        \"status\": \"done\",\n        \"transaction_hash\": \"0xd04efdd2b87935eda27dfab2a415697da9947cf9f3c7613757fbbeb670fb0f80\"\n    }\n}"}],"_postman_id":"192a7193-38ba-499e-a8d5-580bdb6e4974"},{"name":"Update NFT on the collection","id":"6417146a-fb43-49a6-98a5-f50e8db94c98","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collection_address\": \"0xC6657f2bfCb967a0F329eec6D448dAc209DC5553\",\n    \"token_id\": 0,\n    \"url\": \"https://mirror-web.mirrorworld.fun/api/v1/metadata/10\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/mint/update","description":"<p><strong>This endpoint is used to update an existing NFT on the collection. The collection can be type ERC1155</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>collection_address</strong> | <code>string</code> The address of the collection</li>\n<li><strong>token_id</strong> | <code>integer</code> The token_id of the NFT to be updated</li>\n<li><strong>url</strong> | <code>string</code> Url of NFT json config file</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","asset","mint","update"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"a0628366-f46c-4a53-9479-58b7a2a6bd3a","type":"any","value":"ethereum","key":"chain"},{"id":"e9b41c40-9f8f-4a91-a5eb-51fdf85812c1","type":"any","value":"goerli","key":"network"}]}},"response":[{"id":"4ed1e8c2-11fc-4f40-8052-f38a075c9c9a","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collection_address\": \"0xC6657f2bfCb967a0F329eec6D448dAc209DC5553\",\n    \"token_id\": 0,\n    \"url\": \"https://mirror-web.mirrorworld.fun/api/v1/metadata/10\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/mint/update","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","mint","update"],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"}]},"description":"**This endpoint is used to update an existing NFT on the collection. The collection can be type ERC1155**\n\n*Required parameters:*\n- **collection_address** | `string` The address of the collection\n- **token_id** | `integer` The token_id of the NFT to be updated\n- **url** | `string` Url of NFT json config file\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"Successfully updated NFT url\",\n    \"data\": {\n        \"from\": \"0x8C041BAa01E1B7236948F4de859409722d2bF7cE\",\n        \"hash\": \"0xfe7d98f3d0362e2fb8283c71d6e64668a2ea64aaf6424eca8c6c14d30892d8fd\",\n        \"block_hash\": \"0xd04efdd2b87935eda27dfab2a415697da9947cf9f3c7613757fbbeb670fb0f80\",\n        \"block_number\": 0,\n        \"nft\": {\n            \"seed\": \"U46obMjUS6nEaRcJ9uIHn\",\n            \"hash\": \"0xfe7d98f3d0362e2fb8283c71d6e64668a2ea64aaf6424eca8c6c14d30892d8fd\",\n            \"signature\": \"0x83d851b9c9638803b98020c91c55906d8ff7eadfa12d5d783cbf2818defca8657486655162f97a4ef36d794cd2404397d64387dfe96fc022be4479716a5c66ac1b\",\n            \"creator_address\": \"0x8C041BAa01E1B7236948F4de859409722d2bF7cE\",\n            \"to_wallet_address\": \"0xa5DcC6f79dF52C5A8A03fF9ca5Feb4aC26fEEa34\",\n            \"contract_address\": \"0xC6657f2bfCb967a0F329eec6D448dAc209DC5553\",\n            \"contract_type\": \"erc1155\",\n            \"token_id\": \"0\",\n            \"mint_amount\": 1,\n            \"status\": \"done\",\n            \"transaction_hash\": \"0xd04efdd2b87935eda27dfab2a415697da9947cf9f3c7613757fbbeb670fb0f80\"\n        }\n    }\n}"}],"_postman_id":"6417146a-fb43-49a6-98a5-f50e8db94c98"},{"name":"Add collection to tracked collections","id":"d3c505b3-1bb6-4c36-95ad-c8b6c601c33e","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collection_address\": \"0xC6657f2bfCb967a0F329eec6D448dAc209DC5553\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/mint/import-collection","description":"<p><strong>This endpoint is used to add externally created ERC721 and ERC1155 collections to tracked collections</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>collection_address</strong> | <code>string</code> Address of the collection contract</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","asset","mint","import-collection"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"47259ce1-46b9-407a-ac33-311b4327ec45","type":"any","value":"ethereum","key":"chain"},{"id":"7838d7e9-11c4-4cfb-8e5c-4eb13ce32c4b","type":"any","value":"goerli","key":"network"}]}},"response":[{"id":"a49173ab-4028-4417-b8b3-54198c36e7ff","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collection_address\": \"0xC6657f2bfCb967a0F329eec6D448dAc209DC5553\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/mint/import-collection","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","mint","import-collection"],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"}]},"description":"**This endpoint is used to add externally created ERC721 and ERC1155 collections to tracked collections**\n\n*Required parameters:*\n- **collection_address** | `string` Address of the collection contract\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"Successfully minted collection\",\n    \"data\": {\n        \"seed\": \"iOGhWsqWZZRWHJIdNQHKl\",\n        \"hash\": \"0x31df6a226abe98b2db0abafb460ee7eb9855c415ca8ed7639156396be74f0d57\",\n        \"signature\": \"0x081bbc6441c960cc17820a06d27937821e8e2548c099c082f1439840e3d67f8a0f711c7aabcc9a583db1afa4798da56b654d8381b8248e936ace28c48c39bc7b1c\",\n        \"contract_address\": \"0xC6657f2bfCb967a0F329eec6D448dAc209DC5553\",\n        \"contract_type\": \"erc1155\",\n        \"url\": \"https://www.funapes.io/api/funana/\",\n        \"name\": \"\",\n        \"symbol\": \"\",\n        \"creator_address\": \"0x8C041BAa01E1B7236948F4de859409722d2bF7cE\",\n        \"track_mint\": true,\n        \"burn_mint\": true,\n        \"mint_enabled\": true,\n        \"mint_start_id\": 0,\n        \"mint_end_id\": 0,\n        \"mint_amount\": 1,\n        \"status\": \"done\",\n        \"transaction_hash\": \"0xe4d8509c907b4cb359024f01d36a5b2bc26b0421de803acc97dd2850489d0240\"\n    }\n}"}],"_postman_id":"d3c505b3-1bb6-4c36-95ad-c8b6c601c33e"},{"name":"Verify config url for collection","id":"f35603af-85be-414f-8496-063ed5754384","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"example\""}],"body":{"mode":"raw","raw":"{\n    \"url\": \"example\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/mint/verify-config","description":"<p><strong>This endpoint is used to verify the config url for the NFT. The config url is used to fetch the NFT details like name, symbol, image, etc.</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>url</strong> | <code>string</code> The url of the config file</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","asset","mint","verify-config"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"2b199390-9150-4872-9f25-126809c6a16e","type":"any","value":"","key":"chain"},{"id":"5bd8942a-743e-4a78-b0cf-5125883a4bfe","type":"any","value":"","key":"network"}]}},"response":[],"_postman_id":"f35603af-85be-414f-8496-063ed5754384"}],"id":"479c662b-21a8-479a-a10f-ac5876aaf3a6","_postman_id":"479c662b-21a8-479a-a10f-ac5876aaf3a6","description":""},{"name":"Search","item":[{"name":"Query NFT","id":"b0f31fa1-3a3a-4067-8568-c57a452d9b87","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/nft/:token_address/:token_id","description":"<p><strong>This endpoint is used to get an NFT by token address and token id</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>token_address</strong> | <code>string</code> The address of the NFT</li>\n<li><strong>token_id</strong> | <code>string</code> The token_id of the NFT</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","asset","nft",":token_address",":token_id"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"e005cf1a-d178-49e5-96d2-c7d85217bc38","type":"any","value":"ethereum","key":"chain"},{"id":"8ae15d73-7514-4f1f-ad00-99e5d12810a8","type":"any","value":"goerli","key":"network"},{"id":"ad076667-cf8f-4b0c-a33b-f9fdf52d5d3d","description":{"content":"<p>Contract address of the nft</p>\n","type":"text/plain"},"type":"any","value":"0x0a37026dbff6164319dd54b25c357baec53040d2","key":"token_address"},{"id":"0fee73b8-4a20-408c-bed2-3906d1e1359f","description":{"content":"<p>token_id of an nft</p>\n","type":"text/plain"},"type":"any","value":"0","key":"token_id"}]}},"response":[{"id":"f675f53a-dea1-4254-810b-d183e768c6f4","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/nft/:token_address/:token_id","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","nft",":token_address",":token_id"],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"},{"key":"token_address","value":"0x0a37026dbff6164319dd54b25c357baec53040d2","description":"Contract address of the nft"},{"key":"token_id","value":"0","description":"token_id of an nft"}]},"description":"**This endpoint is used to get an NFT by token address and token id**\n\n*Required parameters:*\n- **token_address** | `string` The address of the NFT\n- **token_id** | `string` The token_id of the NFT\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"\",\n    \"data\": []\n}"}],"_postman_id":"b0f31fa1-3a3a-4067-8568-c57a452d9b87"},{"name":"Search NFTs by owner address","id":"dfd640f1-1ef5-48a3-9046-809e80cde170","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"owner_address\": \"0x9646986b72099C9bEB620572FdbFda8286511172\",\n    \"limit\": 25\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/nft/owner","description":"<p><strong>This endpoint is used to search NFTs by owner address</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>owner_address</strong> | <code>string</code> The address of NFTs holder</li>\n</ul>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>limit</strong> | <code>integer</code> The number of NFTs to be returned. Default is 25. Maximum is 100</li>\n<li><strong>cursor</strong> | <code>string</code> The cursor to be used for pagination</li>\n<li><strong>token_addresses</strong> | <code>list&lt;string&gt;</code> The list of token addresses to filter by</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","asset","nft","owner"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"a88c63af-9653-447e-81f5-a4dfa35668f3","type":"any","value":"ethereum","key":"chain"},{"id":"dbfe14fa-40ad-4883-9790-cecd3ec8e3f9","type":"any","value":"goerli","key":"network"}]}},"response":[{"id":"12719aba-21a3-42c6-9374-12229506a238","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"owner_address\": \"0x9646986b72099C9bEB620572FdbFda8286511172\",\n    \"limit\": 25\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/nft/owner","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","nft","owner"],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"}]},"description":"**This endpoint is used to search NFTs by owner address**\n\n*Required parameters:*\n- **owner_address** | `string` The address of NFTs holder\n\n*Optional parameters:*\n- **limit** | `integer` The number of NFTs to be returned. Default is 25. Maximum is 100\n- **cursor** | `string` The cursor to be used for pagination\n- **token_addresses** | `list<string>` The list of token addresses to filter by\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"\",\n    \"data\": {\n        \"page\": 1,\n        \"page_size\": 25,\n        \"result\": []\n    }\n}"}],"_postman_id":"dfd640f1-1ef5-48a3-9046-809e80cde170"},{"name":"Search NFTs","id":"d4c2af1e-c0b3-4d61-a01b-7342c07482a6","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"tokens\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/nft/mints","description":"<p><strong>This endpoint is used to search NFTs by token addresses and token ids</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>tokens</strong> | <code>object</code> The list of tokens to be searched. List must be an array of json objects containing <strong>token_address</strong> and <strong>token_id</strong><ul>\n<li><strong>token_address</strong> | <code>string</code> The address of the NFT collection</li>\n<li><strong>token_id</strong> | <code>string</code> The token_id of the NFT</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","asset","nft","mints"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"7c071662-b4c1-4533-87a6-b7f24b151dd9","type":"any","value":"ethereum","key":"chain"},{"id":"e2d2cb1c-e225-4a03-a2e5-ef3fc9ebcd6a","type":"any","value":"goerli","key":"network"}]}},"response":[{"id":"ecd58dda-4717-4912-8289-010481fcc57f","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"tokens\": []\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/nft/mints","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","nft","mints"],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"}]},"description":"**This endpoint is used to search NFTs by token addresses and token ids**\n\n*Required parameters:*\n- **tokens** | `object` The list of tokens to be searched. List must be an array of json objects containing **token_address** and **token_id**\n  - **token_address** | `string` The address of the NFT collection\n  - **token_id** | `string` The token_id of the NFT\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"\",\n    \"data\": []\n}"}],"_postman_id":"d4c2af1e-c0b3-4d61-a01b-7342c07482a6"},{"name":"Search Collections by owner address","id":"bf050d94-3406-4617-80a7-28b0db968ce4","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"owner_address\": \"0x9646986b72099C9bEB620572FdbFda8286511172\",\n    \"limit\": 25\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/asset/collection/owner","description":"<p><strong>This endpoint is used to search for Collections by owner address</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>owner_address</strong> | <code>string</code> The address of NFTs holder</li>\n</ul>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>limit</strong> | <code>integer</code> The number of collections to be returned. Default is 25. Maximum is 100</li>\n<li><strong>cursor</strong> | <code>string</code> The cursor to be used for pagination</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","asset","collection","owner"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"6ea4dfe6-816d-48c4-93d6-8cc5d5fe1b5e","type":"any","value":"ethereum","key":"chain"},{"id":"ccec91a9-2b78-4079-9cda-9993f6c32a5c","type":"any","value":"goerli","key":"network"}]}},"response":[{"id":"4f846221-3d86-41d2-b6e2-7c38ede15682","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"owner_address\": \"0x9646986b72099C9bEB620572FdbFda8286511172\",\n    \"limit\": 25\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/asset/collection/owner","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","asset","collection","owner"],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"}]},"description":"**This endpoint is used to search for Collections by owner address**\n\n*Required parameters:*\n- **owner_address** | `string` The address of NFTs holder\n\n*Optional parameters:*\n- **limit** | `integer` The number of collections to be returned. Default is 25. Maximum is 100\n- **cursor** | `string` The cursor to be used for pagination\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"\",\n    \"data\": {\n        \"page\": 1,\n        \"page_size\": 25,\n        \"result\": []\n    }\n}"}],"_postman_id":"bf050d94-3406-4617-80a7-28b0db968ce4"}],"id":"83b0bdb0-299b-4bd2-ba47-9154b24c782a","_postman_id":"83b0bdb0-299b-4bd2-ba47-9154b24c782a","description":""}],"id":"d4d502a3-f0d9-4d03-8e05-58d601398623","_postman_id":"d4d502a3-f0d9-4d03-8e05-58d601398623","description":""},{"name":"Solana","item":[{"name":"Auction","item":[{"name":"Buy NFT on the marketplace","id":"77ddd6fd-4f5a-475a-ac1c-2c67cb700d1a","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"x-authorization-token","value":"\"<authorization token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"auction_house\": \"FW6o4vELLA4NojBdTjNGz1F7apWoj6Jtwb1YNbSdyB1X\",\n    \"mint_address\": \"AiBjJ4VYmi3Ba6UU86Xnv36ttFWH2PE4hufq3B5uDfzM\",\n    \"price\": 0.1,\n    \"confirmation\": \"finalized\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/solana/:network/asset/auction/buy","description":"<p><strong>This endpoint is used to buy an NFT on the marketplace</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>mint_address</strong> | <code>string</code> The mint address of the NFT</li>\n<li><strong>price</strong> | <code>decimal</code> The price of the NFT</li>\n<li><strong>auction_house</strong> | <code>string</code> The address of the auction house</li>\n</ul>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>confirmation</strong> | <code>string</code> The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed</li>\n<li><strong>skip_preflight</strong> | <code>boolean</code> Skip preflight check. Default is false</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","asset","auction","buy"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"1a905d2c-8714-4794-87c9-e42b4932f55a","description":{"content":"<p>Solana Network</p>\n","type":"text/plain"},"type":"any","value":"devnet","key":"network"}]}},"response":[{"id":"56ea0df2-6af4-4ddd-938d-49737f0c93d3","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"x-authorization-token","value":"\"<authorization token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"auction_house\": \"FW6o4vELLA4NojBdTjNGz1F7apWoj6Jtwb1YNbSdyB1X\",\n    \"mint_address\": \"AiBjJ4VYmi3Ba6UU86Xnv36ttFWH2PE4hufq3B5uDfzM\",\n    \"price\": 0.1,\n    \"confirmation\": \"finalized\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/asset/auction/buy","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","asset","auction","buy"],"variable":[{"key":"network","value":"devnet","description":"Solana Network"}]},"description":"**This endpoint is used to buy an NFT on the marketplace**\n\n*Required parameters:*\n- **mint_address** | `string` The mint address of the NFT\n- **price** | `decimal` The price of the NFT\n- **auction_house** | `string` The address of the auction house\n\n*Optional parameters:*\n- **confirmation** | `string` The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed\n- **skip_preflight** | `boolean` Skip preflight check. Default is false\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"successfully bought nft\",\n    \"data\": {\n        \"type\": \"buy\",\n        \"wallet_address\": \"Dz1wUgWm4i3JDYmB541TbnY7NR2hKYibfEyJqt1kqWFM\",\n        \"mint_address\": \"AiBjJ4VYmi3Ba6UU86Xnv36ttFWH2PE4hufq3B5uDfzM\",\n        \"price\": \"0.1\",\n        \"auction_house\": \"FW6o4vELLA4NojBdTjNGz1F7apWoj6Jtwb1YNbSdyB1X\",\n        \"signature\": \"5As1g2c71dxHugeEBtMVUs7Fy9tzjTprM1n7CzLqGjoebDyp8916pCzHTk3iGecCkuJiDVbQ22eLBRhpGpz2QGZY\",\n        \"seller_address\": \"Dz1wUgWm4i3JDYmB541TbnY7NR2hKYibfEyJqt1kqWFM\",\n        \"to_wallet_address\": \"6p9XCYYxRAfngzFUc2CTig567GYfUwpYzPwP18WYwoMo\",\n        \"status\": \"done\",\n        \"nft\": {\n            \"url\": \"https://mirror-web.mirrorworld.fun/api/v1/mirror/metadata/14157\",\n            \"mint_address\": \"AiBjJ4VYmi3Ba6UU86Xnv36ttFWH2PE4hufq3B5uDfzM\",\n            \"update_authority\": \"GCeY1zY2QFz1iYekbsX1jQjtJnjyxWXtBhxAJPrvG3Bg\",\n            \"creator_address\": \"GCeY1zY2QFz1iYekbsX1jQjtJnjyxWXtBhxAJPrvG3Bg\",\n            \"name\": \"Mirrors #14157\",\n            \"symbol\": \"MWG2\",\n            \"collection\": \"5ijAj7xjgq3X6CeBkk8d9vvXUQQ4wVsL3qJ2HVUY9NQK\",\n            \"collection_verified\": true,\n            \"seller_fee_basis_points\": 550\n        }\n    }\n}"}],"_postman_id":"77ddd6fd-4f5a-475a-ac1c-2c67cb700d1a"},{"name":"Create Buy NFT Transaction","id":"4cc27115-360a-4279-8731-bba7b19249fb","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"auction_house\": \"FW6o4vELLA4NojBdTjNGz1F7apWoj6Jtwb1YNbSdyB1X\",\n    \"wallet_address\": \"Dz1wUgWm4i3JDYmB541TbnY7NR2hKYibfEyJqt1kqWFM\",\n    \"mint_address\": \"AiBjJ4VYmi3Ba6UU86Xnv36ttFWH2PE4hufq3B5uDfzM\",\n    \"price\": 0.1\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/solana/:network/asset/auction/buy/transaction","description":"<p><strong>This endpoint is used to create a buy NFT transaction object, serialized to base64</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>mint_address</strong> | <code>string</code> The mint address of the NFT</li>\n<li><strong>price</strong> | <code>decimal</code> The price of the NFT</li>\n<li><strong>auction_house</strong> | <code>string</code> The address of the auction house</li>\n<li><strong>wallet_address</strong> | <code>string</code> The wallet address of the user</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","asset","auction","buy","transaction"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"a97dd391-7686-4bca-a687-6bdbb3d1a7c0","description":{"content":"<p>Solana Network</p>\n","type":"text/plain"},"type":"any","value":"devnet","key":"network"}]}},"response":[{"id":"6b867bb9-a708-4946-88c1-5020ab1f9ec5","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"auction_house\": \"FW6o4vELLA4NojBdTjNGz1F7apWoj6Jtwb1YNbSdyB1X\",\n    \"wallet_address\": \"Dz1wUgWm4i3JDYmB541TbnY7NR2hKYibfEyJqt1kqWFM\",\n    \"mint_address\": \"AiBjJ4VYmi3Ba6UU86Xnv36ttFWH2PE4hufq3B5uDfzM\",\n    \"price\": 0.1\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/asset/auction/buy/transaction","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","asset","auction","buy","transaction"],"variable":[{"key":"network","value":"devnet","description":"Solana Network"}]},"description":"**This endpoint is used to create a buy NFT transaction object, serialized to base64**\n\n*Required parameters:*\n- **mint_address** | `string` The mint address of the NFT\n- **price** | `decimal` The price of the NFT\n- **auction_house** | `string` The address of the auction house\n- **wallet_address** | `string` The wallet address of the user\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"successfully created buy nft tx\",\n    \"data\": {\n        \"signature\": \"\",\n        \"status\": \"not_submitted\",\n        \"tx\": \"AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAkPVl5d9KCeJbC6e7aSTHYmT1SpY9MsvlYG7G5oyE34G25EoNEWE+5GEDvEuQb7cFfvrbdYYsECeX/OLWjDGrrcbWmrJ/LUwAidO3Y/Eh8msuEQOCtaTZ1rzDkoknjtq3sohE7NXKvWmdlo9YBqTTmii4lbQUDIKY25oTTGUjeU0rm/zK9qpmnLwqQTJaIGaucQO6nymbjfRg1NEweQ1kC4GQtsM6gNMyHdoLxTeZ+sL8KFbDvrH7GnS23vhtocV+HyAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfgiqC2njESxpc05SEdq7ydHTRiIOGCeZ3QD/oBMPWpq/AQY3KJPROgujWcEw9ujpivZmXZdFga8zQtM9y5X4G13gDFIWph2KbD0eX/eu/q+kGNvBGsL1Vvlhl4106pyYKZZOGPLpGFWTq5BNzchVG6wFRyTCCdrvUrSocOkIQe/QkXpd1kxJfsVlBtsCpJgr0Q4vNEDVSkqQLBd+H9dUgBqfVFxh70WY12tQEVf3CwMEkxo8hVnWl27rLXwgAAAAGp9UXGSxcUSGMyUw9SvF/WNruCJuh/UTj29mKAAAAAAbd9uHXZaGT2cvhRs7reawctIXtX1s3kTqM9YV+/wCp6Niki3MpJpV/v0U7HgheBhV3UC6pMaGYM9Od8J31ZAUCCgwAAQcICQIDBQ4GCw0bM+aFpAF/g63+/f8A4fUFAAAAAAEAAAAAAAAACgUEAAYNDAnPayygS97DG/8=\",\n        \"feeEstimate\": 5000\n    }\n}"}],"_postman_id":"4cc27115-360a-4279-8731-bba7b19249fb"},{"name":"Cancel NFT listing on the marketplace","id":"ee86b61f-d359-42bd-8632-2bc3535c172e","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"auction_house\": \"FW6o4vELLA4NojBdTjNGz1F7apWoj6Jtwb1YNbSdyB1X\",\n    \"mint_address\": \"AiBjJ4VYmi3Ba6UU86Xnv36ttFWH2PE4hufq3B5uDfzM\",\n    \"price\": 0.1,\n    \"confirmation\": \"finalized\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/solana/:network/asset/auction/cancel","description":"<p><strong>This endpoint is used to cancel a NFT listing on the marketplace</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>mint_address</strong> | <code>string</code> The mint address of the NFT</li>\n<li><strong>price</strong> | <code>decimal</code> The price of the NFT</li>\n<li><strong>auction_house</strong> | <code>string</code> The address of the auction house</li>\n</ul>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>confirmation</strong> | <code>string</code> The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed</li>\n<li><strong>skip_preflight</strong> | <code>boolean</code> Skip preflight check. Default is false</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","asset","auction","cancel"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"26e8660c-816b-4628-850c-be67e0b89de0","description":{"content":"<p>Solana Network</p>\n","type":"text/plain"},"type":"any","value":"devnet","key":"network"}]}},"response":[{"id":"5c1f0f7e-4c04-4e62-8803-6ab948c458ab","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"auction_house\": \"FW6o4vELLA4NojBdTjNGz1F7apWoj6Jtwb1YNbSdyB1X\",\n    \"mint_address\": \"AiBjJ4VYmi3Ba6UU86Xnv36ttFWH2PE4hufq3B5uDfzM\",\n    \"price\": 0.1,\n    \"confirmation\": \"finalized\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/asset/auction/cancel","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","asset","auction","cancel"],"variable":[{"key":"network","value":"devnet","description":"Solana Network"}]},"description":"**This endpoint is used to cancel a NFT listing on the marketplace**\n\n*Required parameters:*\n- **mint_address** | `string` The mint address of the NFT\n- **price** | `decimal` The price of the NFT\n- **auction_house** | `string` The address of the auction house\n\n*Optional parameters:*\n- **confirmation** | `string` The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed\n- **skip_preflight** | `boolean` Skip preflight check. Default is false\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"successfully cancelled nft listing\",\n    \"data\": {\n        \"type\": \"cancel\",\n        \"wallet_address\": \"Dz1wUgWm4i3JDYmB541TbnY7NR2hKYibfEyJqt1kqWFM\",\n        \"mint_address\": \"AiBjJ4VYmi3Ba6UU86Xnv36ttFWH2PE4hufq3B5uDfzM\",\n        \"price\": \"0.1\",\n        \"auction_house\": \"FW6o4vELLA4NojBdTjNGz1F7apWoj6Jtwb1YNbSdyB1X\",\n        \"signature\": \"2vazKbpXQ2ZrDq9W7KwyMDoQr8d8wkQCzTLK8dWmYvUGBJmbQqyTAmscQpAPW9EqND4PBrfuBHzh7g7stWmzM3v\",\n        \"seller_address\": \"Dz1wUgWm4i3JDYmB541TbnY7NR2hKYibfEyJqt1kqWFM\",\n        \"status\": \"done\",\n        \"nft\": {\n            \"url\": \"https://mirror-web.mirrorworld.fun/api/v1/mirror/metadata/14157\",\n            \"mint_address\": \"AiBjJ4VYmi3Ba6UU86Xnv36ttFWH2PE4hufq3B5uDfzM\",\n            \"update_authority\": \"GCeY1zY2QFz1iYekbsX1jQjtJnjyxWXtBhxAJPrvG3Bg\",\n            \"creator_address\": \"GCeY1zY2QFz1iYekbsX1jQjtJnjyxWXtBhxAJPrvG3Bg\",\n            \"name\": \"Mirrors #14157\",\n            \"symbol\": \"MWG2\",\n            \"collection\": \"5ijAj7xjgq3X6CeBkk8d9vvXUQQ4wVsL3qJ2HVUY9NQK\",\n            \"collection_verified\": true,\n            \"seller_fee_basis_points\": 550\n        }\n    }\n}"}],"_postman_id":"ee86b61f-d359-42bd-8632-2bc3535c172e"},{"name":"Create Cancel NFT listing Transaction","id":"a3db31f8-cf88-4017-9e37-4ef292fc9a42","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"auction_house\": \"FW6o4vELLA4NojBdTjNGz1F7apWoj6Jtwb1YNbSdyB1X\",\n    \"wallet_address\": \"Dz1wUgWm4i3JDYmB541TbnY7NR2hKYibfEyJqt1kqWFM\",\n    \"mint_address\": \"AiBjJ4VYmi3Ba6UU86Xnv36ttFWH2PE4hufq3B5uDfzM\",\n    \"price\": 0.1\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/solana/:network/asset/auction/cancel/transaction","description":"<p><strong>This endpoint is used to create a cancel NFT transaction object, serialized to base64</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>mint_address</strong> | <code>string</code> The mint address of the NFT</li>\n<li><strong>price</strong> | <code>decimal</code> The price of the NFT</li>\n<li><strong>auction_house</strong> | <code>string</code> The address of the auction house</li>\n<li><strong>wallet_address</strong> | <code>string</code> The wallet address of the user</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","asset","auction","cancel","transaction"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"d097acdc-25b4-4eed-a7f4-a16b7b302e93","description":{"content":"<p>Solana Network</p>\n","type":"text/plain"},"type":"any","value":"devnet","key":"network"}]}},"response":[{"id":"c0cd4f9c-8298-4ad0-a2ff-970757bf11ae","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"auction_house\": \"FW6o4vELLA4NojBdTjNGz1F7apWoj6Jtwb1YNbSdyB1X\",\n    \"wallet_address\": \"Dz1wUgWm4i3JDYmB541TbnY7NR2hKYibfEyJqt1kqWFM\",\n    \"mint_address\": \"AiBjJ4VYmi3Ba6UU86Xnv36ttFWH2PE4hufq3B5uDfzM\",\n    \"price\": 0.1\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/asset/auction/cancel/transaction","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","asset","auction","cancel","transaction"],"variable":[{"key":"network","value":"devnet","description":"Solana Network"}]},"description":"**This endpoint is used to create a cancel NFT transaction object, serialized to base64**\n\n*Required parameters:*\n- **mint_address** | `string` The mint address of the NFT\n- **price** | `decimal` The price of the NFT\n- **auction_house** | `string` The address of the auction house\n- **wallet_address** | `string` The wallet address of the user\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"successfully created cancel nft list tx\",\n    \"data\": {\n        \"signature\": \"\",\n        \"status\": \"not_submitted\",\n        \"tx\": \"AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAkPVl5d9KCeJbC6e7aSTHYmT1SpY9MsvlYG7G5oyE34G25EoNEWE+5GEDvEuQb7cFfvrbdYYsECeX/OLWjDGrrcbWmrJ/LUwAidO3Y/Eh8msuEQOCtaTZ1rzDkoknjtq3sohE7NXKvWmdlo9YBqTTmii4lbQUDIKY25oTTGUjeU0rm/zK9qpmnLwqQTJaIGaucQO6nymbjfRg1NEweQ1kC4GQtsM6gNMyHdoLxTeZ+sL8KFbDvrH7GnS23vhtocV+HyAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfgiqC2njESxpc05SEdq7ydHTRiIOGCeZ3QD/oBMPWpq/AQY3KJPROgujWcEw9ujpivZmXZdFga8zQtM9y5X4G13gDFIWph2KbD0eX/eu/q+kGNvBGsL1Vvlhl4106pyYKZZOGPLpGFWTq5BNzchVG6wFRyTCCdrvUrSocOkIQe/QkXpd1kxJfsVlBtsCpJgr0Q4vNEDVSkqQLBd+H9dUgBqfVFxh70WY12tQEVf3CwMEkxo8hVnWl27rLXwgAAAAGp9UXGSxcUSGMyUw9SvF/WNruCJuh/UTj29mKAAAAAAbd9uHXZaGT2cvhRs7reawctIXtX1s3kTqM9YV+/wCp6Niki3MpJpV/v0U7HgheBhV3UC6pMaGYM9Od8J31ZAUCCgwAAQcICQIDBQ4GCw0bM+aFpAF/g63+/f8A4fUFAAAAAAEAAAAAAAAACgUEAAYNDAnPayygS97DG/8=\",\n        \"feeEstimate\": 5000\n    }\n}"}],"_postman_id":"a3db31f8-cf88-4017-9e37-4ef292fc9a42"},{"name":"List NFT on the marketplace","id":"60c9671f-e7ef-42a8-b6de-5190916f1190","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"auction_house\": \"FW6o4vELLA4NojBdTjNGz1F7apWoj6Jtwb1YNbSdyB1X\",\n    \"mint_address\": \"AiBjJ4VYmi3Ba6UU86Xnv36ttFWH2PE4hufq3B5uDfzM\",\n    \"price\": 0.1,\n    \"confirmation\": \"finalized\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/solana/:network/asset/auction/list","description":"<p><strong>This endpoint is used to list an NFT on the marketplace</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>mint_address</strong> | <code>string</code> The mint address of the NFT</li>\n<li><strong>price</strong> | <code>decimal</code> The price of the NFT</li>\n<li><strong>auction_house</strong> | <code>string</code> The address of the auction house</li>\n</ul>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>confirmation</strong> | <code>string</code> The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed</li>\n<li><strong>skip_preflight</strong> | <code>boolean</code> Skip preflight check. Default is false</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","asset","auction","list"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"0eca75c9-c1af-4c76-9df8-a807eb5e887d","description":{"content":"<p>Solana Network</p>\n","type":"text/plain"},"type":"any","value":"devnet","key":"network"}]}},"response":[{"id":"86267497-cd38-4b31-b0d4-ce2d2eea0032","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"auction_house\": \"FW6o4vELLA4NojBdTjNGz1F7apWoj6Jtwb1YNbSdyB1X\",\n    \"mint_address\": \"AiBjJ4VYmi3Ba6UU86Xnv36ttFWH2PE4hufq3B5uDfzM\",\n    \"price\": 0.1,\n    \"confirmation\": \"finalized\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/asset/auction/list","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","asset","auction","list"],"variable":[{"key":"network","value":"devnet","description":"Solana Network"}]},"description":"**This endpoint is used to list an NFT on the marketplace**\n\n*Required parameters:*\n- **mint_address** | `string` The mint address of the NFT\n- **price** | `decimal` The price of the NFT\n- **auction_house** | `string` The address of the auction house\n\n*Optional parameters:*\n- **confirmation** | `string` The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed\n- **skip_preflight** | `boolean` Skip preflight check. Default is false\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"successfully listed nft\",\n    \"data\": {\n        \"type\": \"list\",\n        \"wallet_address\": \"Dz1wUgWm4i3JDYmB541TbnY7NR2hKYibfEyJqt1kqWFM\",\n        \"mint_address\": \"AiBjJ4VYmi3Ba6UU86Xnv36ttFWH2PE4hufq3B5uDfzM\",\n        \"price\": \"0.1\",\n        \"seller_address\": \"Dz1wUgWm4i3JDYmB541TbnY7NR2hKYibfEyJqt1kqWFM\",\n        \"auction_house\": \"FW6o4vELLA4NojBdTjNGz1F7apWoj6Jtwb1YNbSdyB1X\",\n        \"signature\": \"2LZVrALVCLXjKy9gYN1yCnWZUQKSG6FPipKqDHg2FRRPsaT27EtHUqJKWUGqVkHg1UC4ia9ZbqHnyUmr9FjkCdDH\",\n        \"status\": \"done\",\n        \"nft\": {\n            \"url\": \"https://mirror-web.mirrorworld.fun/api/v1/mirror/metadata/14157\",\n            \"mint_address\": \"AiBjJ4VYmi3Ba6UU86Xnv36ttFWH2PE4hufq3B5uDfzM\",\n            \"update_authority\": \"GCeY1zY2QFz1iYekbsX1jQjtJnjyxWXtBhxAJPrvG3Bg\",\n            \"creator_address\": \"GCeY1zY2QFz1iYekbsX1jQjtJnjyxWXtBhxAJPrvG3Bg\",\n            \"name\": \"Mirrors #14157\",\n            \"symbol\": \"MWG2\",\n            \"collection\": \"5ijAj7xjgq3X6CeBkk8d9vvXUQQ4wVsL3qJ2HVUY9NQK\",\n            \"collection_verified\": true,\n            \"seller_fee_basis_points\": 550\n        }\n    }\n}"}],"_postman_id":"60c9671f-e7ef-42a8-b6de-5190916f1190"},{"name":"Create List NFT Transaction","id":"b498ebaf-2489-4580-8fb7-aecec76d7cb0","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"auction_house\": \"FW6o4vELLA4NojBdTjNGz1F7apWoj6Jtwb1YNbSdyB1X\",\n    \"wallet_address\": \"Dz1wUgWm4i3JDYmB541TbnY7NR2hKYibfEyJqt1kqWFM\",\n    \"mint_address\": \"AiBjJ4VYmi3Ba6UU86Xnv36ttFWH2PE4hufq3B5uDfzM\",\n    \"price\": 0.1\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/solana/:network/asset/auction/list/transaction","description":"<p><strong>This endpoint is used to create a list NFT transaction object, serialized to base64</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>mint_address</strong> | <code>string</code> The mint address of the NFT</li>\n<li><strong>price</strong> | <code>decimal</code> The price of the NFT</li>\n<li><strong>auction_house</strong> | <code>string</code> The address of the auction house</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","asset","auction","list","transaction"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"fda003f0-7498-4ff0-a4ad-0e24a0e42c22","description":{"content":"<p>Solana Network</p>\n","type":"text/plain"},"type":"any","value":"devnet","key":"network"}]}},"response":[{"id":"cf765b71-cd02-4a55-970f-2c4660e53037","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"auction_house\": \"FW6o4vELLA4NojBdTjNGz1F7apWoj6Jtwb1YNbSdyB1X\",\n    \"wallet_address\": \"Dz1wUgWm4i3JDYmB541TbnY7NR2hKYibfEyJqt1kqWFM\",\n    \"mint_address\": \"AiBjJ4VYmi3Ba6UU86Xnv36ttFWH2PE4hufq3B5uDfzM\",\n    \"price\": 0.1\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/asset/auction/list/transaction","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","asset","auction","list","transaction"],"variable":[{"key":"network","value":"devnet","description":"Solana Network"}]},"description":"**This endpoint is used to create a list NFT transaction object, serialized to base64**\n\n*Required parameters:*\n- **mint_address** | `string` The mint address of the NFT\n- **price** | `decimal` The price of the NFT\n- **auction_house** | `string` The address of the auction house\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"successfully created list nft tx\",\n    \"data\": {\n        \"signature\": \"\",\n        \"status\": \"not_submitted\",\n        \"tx\": \"AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAkPVl5d9KCeJbC6e7aSTHYmT1SpY9MsvlYG7G5oyE34G25EoNEWE+5GEDvEuQb7cFfvrbdYYsECeX/OLWjDGrrcbWmrJ/LUwAidO3Y/Eh8msuEQOCtaTZ1rzDkoknjtq3sohE7NXKvWmdlo9YBqTTmii4lbQUDIKY25oTTGUjeU0rm/zK9qpmnLwqQTJaIGaucQO6nymbjfRg1NEweQ1kC4GQtsM6gNMyHdoLxTeZ+sL8KFbDvrH7GnS23vhtocV+HyAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfgiqC2njESxpc05SEdq7ydHTRiIOGCeZ3QD/oBMPWpq/AQY3KJPROgujWcEw9ujpivZmXZdFga8zQtM9y5X4G13gDFIWph2KbD0eX/eu/q+kGNvBGsL1Vvlhl4106pyYKZZOGPLpGFWTq5BNzchVG6wFRyTCCdrvUrSocOkIQe/QkXpd1kxJfsVlBtsCpJgr0Q4vNEDVSkqQLBd+H9dUgBqfVFxh70WY12tQEVf3CwMEkxo8hVnWl27rLXwgAAAAGp9UXGSxcUSGMyUw9SvF/WNruCJuh/UTj29mKAAAAAAbd9uHXZaGT2cvhRs7reawctIXtX1s3kTqM9YV+/wCp6Niki3MpJpV/v0U7HgheBhV3UC6pMaGYM9Od8J31ZAUCCgwAAQcICQIDBQ4GCw0bM+aFpAF/g63+/f8A4fUFAAAAAAEAAAAAAAAACgUEAAYNDAnPayygS97DG/8=\",\n        \"feeEstimate\": 5000\n    }\n}"}],"_postman_id":"b498ebaf-2489-4580-8fb7-aecec76d7cb0"},{"name":"Transfer NFT to another wallet","id":"43859444-eadb-45f0-a204-15515619fe2d","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"mint_address\": \"AiBjJ4VYmi3Ba6UU86Xnv36ttFWH2PE4hufq3B5uDfzM\",\n    \"to_wallet_address\": \"Dz1wUgWm4i3JDYmB541TbnY7NR2hKYibfEyJqt1kqWFM\",\n    \"confirmation\": \"finalized\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/solana/:network/asset/auction/transfer","description":"<p><strong>This endpoint is used to transfer NFT to another wallet</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>mint_address</strong> | <code>string</code> The mint address of the NFT</li>\n<li><strong>to_wallet_address</strong> | <code>string</code> The wallet address of the receiver</li>\n</ul>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>confirmation</strong> | <code>string</code> The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed</li>\n<li><strong>skip_preflight</strong> | <code>boolean</code> Skip preflight check. Default is false</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","asset","auction","transfer"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"43f6cc72-ea9c-4341-a21c-3a302d03d1ad","description":{"content":"<p>Solana Network</p>\n","type":"text/plain"},"type":"any","value":"devnet","key":"network"}]}},"response":[{"id":"85b6903f-8dc3-425c-a2e7-8e85d9d6c5a7","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"mint_address\": \"AiBjJ4VYmi3Ba6UU86Xnv36ttFWH2PE4hufq3B5uDfzM\",\n    \"to_wallet_address\": \"Dz1wUgWm4i3JDYmB541TbnY7NR2hKYibfEyJqt1kqWFM\",\n    \"confirmation\": \"finalized\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/asset/auction/transfer","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","asset","auction","transfer"],"variable":[{"key":"network","value":"devnet","description":"Solana Network"}]},"description":"**This endpoint is used to transfer NFT to another wallet**\n\n*Required parameters:*\n- **mint_address** | `string` The mint address of the NFT\n- **to_wallet_address** | `string` The wallet address of the receiver\n\n*Optional parameters:*\n- **confirmation** | `string` The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed\n- **skip_preflight** | `boolean` Skip preflight check. Default is false\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"successfully transferred nft\",\n    \"data\": {\n        \"type\": \"transfer\",\n        \"wallet_address\": \"6p9XCYYxRAfngzFUc2CTig567GYfUwpYzPwP18WYwoMo\",\n        \"mint_address\": \"AiBjJ4VYmi3Ba6UU86Xnv36ttFWH2PE4hufq3B5uDfzM\",\n        \"to_wallet_address\": \"Dz1wUgWm4i3JDYmB541TbnY7NR2hKYibfEyJqt1kqWFM\",\n        \"price\": \"0\",\n        \"auction_house\": \"\",\n        \"signature\": \"3si2ekQcGAgdg9Dj6tKCwuUzuENas6yX17VhfkC6JTRVAhepFHpkxuQ1S57Zpa9XvZZrb96RYg3ytNLt4iTce9J\",\n        \"status\": \"done\",\n        \"seller_address\": null,\n        \"nft\": {\n            \"url\": \"https://mirror-web.mirrorworld.fun/api/v1/mirror/metadata/14157\",\n            \"mint_address\": \"AiBjJ4VYmi3Ba6UU86Xnv36ttFWH2PE4hufq3B5uDfzM\",\n            \"update_authority\": \"GCeY1zY2QFz1iYekbsX1jQjtJnjyxWXtBhxAJPrvG3Bg\",\n            \"creator_address\": \"GCeY1zY2QFz1iYekbsX1jQjtJnjyxWXtBhxAJPrvG3Bg\",\n            \"name\": \"Mirrors #14157\",\n            \"symbol\": \"MWG2\",\n            \"collection\": \"5ijAj7xjgq3X6CeBkk8d9vvXUQQ4wVsL3qJ2HVUY9NQK\",\n            \"collection_verified\": true,\n            \"seller_fee_basis_points\": 550\n        }\n    }\n}"}],"_postman_id":"43859444-eadb-45f0-a204-15515619fe2d"},{"name":"Create NFT Transaction","id":"5c77a4c5-5393-4d80-8939-e7b43741e0a3","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"wallet_address\": \"Dz1wUgWm4i3JDYmB541TbnY7NR2hKYibfEyJqt1kqWFM\",\n    \"to_wallet_address\": \"6p9XCYYxRAfngzFUc2CTig567GYfUwpYzPwP18WYwoMo\",\n    \"mint_address\": \"AiBjJ4VYmi3Ba6UU86Xnv36ttFWH2PE4hufq3B5uDfzM\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/solana/:network/asset/auction/transfer/transaction","description":"<p><strong>This endpoint is used to create NFT transaction object, serialized to base64</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>mint_address</strong> | <code>string</code> The mint address of the NFT</li>\n<li><strong>wallet_address</strong> | <code>string</code> The wallet address of the sender</li>\n<li><strong>to_wallet_address</strong> | <code>string</code> The wallet address of the receiver</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","asset","auction","transfer","transaction"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"f9f7ca9b-a904-4eba-bba0-acc09bd8c0dc","description":{"content":"<p>Solana Network</p>\n","type":"text/plain"},"type":"any","value":"devnet","key":"network"}]}},"response":[{"id":"77e69eae-da28-45ed-b2df-80c0425f36a3","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"wallet_address\": \"Dz1wUgWm4i3JDYmB541TbnY7NR2hKYibfEyJqt1kqWFM\",\n    \"to_wallet_address\": \"6p9XCYYxRAfngzFUc2CTig567GYfUwpYzPwP18WYwoMo\",\n    \"mint_address\": \"AiBjJ4VYmi3Ba6UU86Xnv36ttFWH2PE4hufq3B5uDfzM\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/asset/auction/transfer/transaction","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","asset","auction","transfer","transaction"],"variable":[{"key":"network","value":"devnet","description":"Solana Network"}]},"description":"**This endpoint is used to create NFT transaction object, serialized to base64**\n\n*Required parameters:*\n- **mint_address** | `string` The mint address of the NFT\n- **wallet_address** | `string` The wallet address of the sender\n- **to_wallet_address** | `string` The wallet address of the receiver\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"successfully created transfer nft tx\",\n    \"data\": {\n        \"signature\": \"\",\n        \"status\": \"not_submitted\",\n        \"tx\": \"AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAkPVl5d9KCeJbC6e7aSTHYmT1SpY9MsvlYG7G5oyE34G25EoNEWE+5GEDvEuQb7cFfvrbdYYsECeX/OLWjDGrrcbWmrJ/LUwAidO3Y/Eh8msuEQOCtaTZ1rzDkoknjtq3sohE7NXKvWmdlo9YBqTTmii4lbQUDIKY25oTTGUjeU0rm/zK9qpmnLwqQTJaIGaucQO6nymbjfRg1NEweQ1kC4GQtsM6gNMyHdoLxTeZ+sL8KFbDvrH7GnS23vhtocV+HyAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABfgiqC2njESxpc05SEdq7ydHTRiIOGCeZ3QD/oBMPWpq/AQY3KJPROgujWcEw9ujpivZmXZdFga8zQtM9y5X4G13gDFIWph2KbD0eX/eu/q+kGNvBGsL1Vvlhl4106pyYKZZOGPLpGFWTq5BNzchVG6wFRyTCCdrvUrSocOkIQe/QkXpd1kxJfsVlBtsCpJgr0Q4vNEDVSkqQLBd+H9dUgBqfVFxh70WY12tQEVf3CwMEkxo8hVnWl27rLXwgAAAAGp9UXGSxcUSGMyUw9SvF/WNruCJuh/UTj29mKAAAAAAbd9uHXZaGT2cvhRs7reawctIXtX1s3kTqM9YV+/wCp6Niki3MpJpV/v0U7HgheBhV3UC6pMaGYM9Od8J31ZAUCCgwAAQcICQIDBQ4GCw0bM+aFpAF/g63+/f8A4fUFAAAAAAEAAAAAAAAACgUEAAYNDAnPayygS97DG/8=\",\n        \"feeEstimate\": 5000\n    }\n}"}],"_postman_id":"5c77a4c5-5393-4d80-8939-e7b43741e0a3"}],"id":"52bb7e4e-2a8d-460d-bb0b-67261406d896","_postman_id":"52bb7e4e-2a8d-460d-bb0b-67261406d896","description":""},{"name":"Confirmation","item":[{"name":"Check Status of Transactions","id":"86cbd31b-a911-414f-bd50-32335f5fab17","request":{"method":"POST","header":[{"key":"x-api-key","value":""}],"body":{"mode":"raw","raw":"{\n    \"signatures\": [\n        \"example\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/solana/:network/asset/confirmation/transactions-status","description":"<p><strong>This endpoint is used to check the status of transactions</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>signatures</strong> | <code>string[]</code> Array of transactions signatures</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","asset","confirmation","transactions-status"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"5d7eb5d6-1421-4768-9aaa-40af60bdcebf","description":{"content":"<p>Solana Network</p>\n","type":"text/plain"},"type":"any","value":"","key":"network"}]}},"response":[],"_postman_id":"86cbd31b-a911-414f-bd50-32335f5fab17"},{"name":"Check Status of minting","id":"cd471fc8-db16-444d-ba58-e6d27b3e7032","request":{"method":"POST","header":[{"key":"x-api-key","value":""}],"body":{"mode":"raw","raw":"{\n    \"mint_addresses\": [\n        \"example\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/solana/:network/asset/confirmation/mints-status","description":"<p><strong>This endpoint is used to check the status of minting</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>mint_addresses</strong> | <code>string[]</code> Array of mint addresses</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","asset","confirmation","mints-status"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"0681fc21-c7e4-48d4-89f8-76d35964e1ea","description":{"content":"<p>Solana Network</p>\n","type":"text/plain"},"type":"any","value":"","key":"network"}]}},"response":[],"_postman_id":"cd471fc8-db16-444d-ba58-e6d27b3e7032"}],"id":"57d87e5f-2fd3-4a74-9df4-325bdd690232","_postman_id":"57d87e5f-2fd3-4a74-9df4-325bdd690232","description":""},{"name":"Marketplace","item":[{"name":"Search for marketplaces","id":"0120bce3-af16-49c9-9d57-8252b3074030","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/solana/:network/asset/marketplaces","description":"<p><strong>This endpoint is used to search for marketplaces</strong></p>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>page</strong> | <code>integer</code> The page number. Default is 1</li>\n<li><strong>size</strong> | <code>integer</code> The number of results per page. Default is 10</li>\n<li><strong>name</strong> | <code>string</code> The name of the marketplace. Default is all</li>\n<li><strong>authority</strong> | <code>string</code> The authority of the marketplace. Default is all</li>\n<li><strong>seller_fee_basis_points</strong> | <code>integer</code> The seller fee basis points of the marketplace. Default is all</li>\n<li><strong>auction_house</strong> | <code>string</code> The auction house address of the marketplace. Default is all</li>\n<li><strong>treasury_mint</strong> | <code>string</code> The payment token address of the marketplace. Default is all</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","asset","marketplaces"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"41d2a271-7c0f-4524-8c91-edc060e6ba6f","description":{"content":"<p>Solana Network</p>\n","type":"text/plain"},"type":"any","value":"devnet","key":"network"}]}},"response":[{"id":"2c712c22-776f-45f1-9299-d3476cf8c3ae","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/asset/marketplaces","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","asset","marketplaces"],"variable":[{"key":"network","value":"devnet","description":"Solana Network"}]},"description":"**This endpoint is used to search for marketplaces**\n\n*Optional parameters:*\n- **page** | `integer` The page number. Default is 1\n- **size** | `integer` The number of results per page. Default is 10\n- **name** | `string` The name of the marketplace. Default is all\n- **authority** | `string` The authority of the marketplace. Default is all\n- **seller_fee_basis_points** | `integer` The seller fee basis points of the marketplace. Default is all\n- **auction_house** | `string` The auction house address of the marketplace. Default is all\n- **treasury_mint** | `string` The payment token address of the marketplace. Default is all\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"Successfully queried marketplaces\",\n    \"data\": {\n        \"count\": 1,\n        \"total_pages\": 1,\n        \"page\": 1,\n        \"data\": []\n    }\n}"}],"_postman_id":"0120bce3-af16-49c9-9d57-8252b3074030"},{"name":"Deploy Auction house marketplace instance","id":"b485222e-1c66-4298-a7c2-0173331274b5","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"seller_fee_basis_points\": 100,\n    \"collections\": [],\n    \"storefront\": {\n        \"name\": \"sapphire-casual\",\n        \"subdomain\": \"https://sapphire-casual-storefront.com\",\n        \"description\": \"sapphire-casual marketplace\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/solana/:network/asset/marketplaces/create","description":"<p><strong>This endpoint is used to deploy an instance of auction house marketplace</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>seller_fee_basis_points</strong> | <code>integer</code> The seller fee basis points of the marketplace</li>\n</ul>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>treasury_mint</strong> | <code>string</code> The payment token address of the marketplace. Default is SOL</li>\n<li><strong>storefront</strong> | <code>object</code> The storefront details. Used when deploying a storefront client application<ul>\n<li><strong>name</strong> | <code>string</code> The name of the marketplace</li>\n<li><strong>subdomain</strong> | <code>string</code> Domain where storefront will be hosted</li>\n<li><strong>description</strong> | <code>string</code> The description of the marketplace</li>\n</ul>\n</li>\n<li><strong>collections</strong> | <code>string[]</code> The list of collections to be added to the marketplace. Used when deploying a storefront client application</li>\n<li><strong>skip_preflight</strong> | <code>boolean</code> Skip preflight checks. Default is false</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","asset","marketplaces","create"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"283457ca-e9d7-444b-9c58-0f5bc49e34cb","description":{"content":"<p>Solana Network</p>\n","type":"text/plain"},"type":"any","value":"devnet","key":"network"}]}},"response":[{"id":"b0ade41c-de0d-4e6e-b6dc-0323f7593347","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"seller_fee_basis_points\": 100,\n    \"collections\": [],\n    \"storefront\": {\n        \"name\": \"sapphire-casual\",\n        \"subdomain\": \"https://sapphire-casual-storefront.com\",\n        \"description\": \"sapphire-casual marketplace\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/asset/marketplaces/create","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","asset","marketplaces","create"],"variable":[{"key":"network","value":"devnet","description":"Solana Network"}]},"description":"**This endpoint is used to deploy an instance of auction house marketplace**\n\n*Required parameters:*\n- **seller_fee_basis_points** | `integer` The seller fee basis points of the marketplace\n\n*Optional parameters:*\n- **treasury_mint** | `string` The payment token address of the marketplace. Default is SOL\n- **storefront** | `object` The storefront details. Used when deploying a storefront client application\n  - **name** | `string` The name of the marketplace\n  - **subdomain** | `string` Domain where storefront will be hosted\n  - **description** | `string` The description of the marketplace\n- **collections** | `string[]` The list of collections to be added to the marketplace. Used when deploying a storefront client application\n- **skip_preflight** | `boolean` Skip preflight checks. Default is false\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"successfully created solana marketplace\",\n    \"data\": {\n        \"marketplace\": {\n            \"name\": \"sapphire-casual\",\n            \"collections\": [],\n            \"auction_house\": \"2j3E5PHEVTBJEKC5AQWonNj3ThG5rsZKS22D6tsgCn8g\",\n            \"authority\": \"784SzkwZ97zkuTjtiaBkRuhyy85WVVT8LP9XqJKEyLCG\",\n            \"auction_house_treasury\": \"2gEmSnaerc34uq8Kg9G4XimrFuDqu5nRGssBrQV1egBc\",\n            \"auction_house_fee_account\": \"29neYFxj57kv89UsZdk8bTAsa2HRUV1FkPyUe7hRhmwX\",\n            \"fee_withdrawal_destination\": \"784SzkwZ97zkuTjtiaBkRuhyy85WVVT8LP9XqJKEyLCG\",\n            \"treasury_mint\": \"So11111111111111111111111111111111111111112\",\n            \"treasury_withdrawal_destination\": \"784SzkwZ97zkuTjtiaBkRuhyy85WVVT8LP9XqJKEyLCG\",\n            \"seller_fee_basis_points\": 100,\n            \"signature\": \"4xeqaEPUMwxkABDP4itUTR1zg9AsbTo47sqXfzYV7UuUuZAdLQ7G9Ub78ayxEJuzLXxg42T4GkZU2BZNDWLr6KRL\"\n        },\n        \"transactionStatus\": \"done\",\n        \"signature\": \"4xeqaEPUMwxkABDP4itUTR1zg9AsbTo47sqXfzYV7UuUuZAdLQ7G9Ub78ayxEJuzLXxg42T4GkZU2BZNDWLr6KRL\"\n    }\n}"}],"_postman_id":"b485222e-1c66-4298-a7c2-0173331274b5"},{"name":"Update existing marketplace details","id":"fbc20322-77e4-48ff-924f-7095ca12acb3","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"seller_fee_basis_points\": 100,\n    \"collections\": [],\n    \"storefront\": {\n        \"name\": \"sapphire-casual\",\n        \"subdomain\": \"https://sapphire-casual-storefront.com\",\n        \"description\": \"sapphire-casual marketplace\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/solana/:network/asset/marketplaces/update","description":"<p><strong>This endpoint is used to update an existing marketplace</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>seller_fee_basis_points</strong> | <code>integer</code> The seller fee basis points of the marketplace</li>\n</ul>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>treasury_mint</strong> | <code>string</code> The payment token address of the marketplace. Default is SOL</li>\n<li><strong>storefront</strong> | <code>object</code> The storefront details. Used when deploying a storefront client application<ul>\n<li><strong>name</strong> | <code>string</code> The name of the marketplace</li>\n<li><strong>subdomain</strong> | <code>string</code> Domain where storefront will be hosted</li>\n<li><strong>description</strong> | <code>string</code> The description of the marketplace</li>\n</ul>\n</li>\n<li><strong>collections</strong> | <code>string[]</code> The list of collections to be added to the marketplace. Used when deploying a storefront client application</li>\n<li><strong>skip_preflight</strong> | <code>boolean</code> Skip preflight checks. Default is false</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","asset","marketplaces","update"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"f51d603c-14eb-4354-9157-be74b06eb5e8","description":{"content":"<p>Solana Network</p>\n","type":"text/plain"},"type":"any","value":"devnet","key":"network"}]}},"response":[{"id":"c1ae1691-08d7-4d5c-8801-f4b1c735558e","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"seller_fee_basis_points\": 100,\n    \"collections\": [],\n    \"storefront\": {\n        \"name\": \"sapphire-casual\",\n        \"subdomain\": \"https://sapphire-casual-storefront.com\",\n        \"description\": \"sapphire-casual marketplace\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/asset/marketplaces/update","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","asset","marketplaces","update"],"variable":[{"key":"network","value":"devnet","description":"Solana Network"}]},"description":"**This endpoint is used to update an existing marketplace**\n\n*Required parameters:*\n- **seller_fee_basis_points** | `integer` The seller fee basis points of the marketplace\n\n*Optional parameters:*\n- **treasury_mint** | `string` The payment token address of the marketplace. Default is SOL\n- **storefront** | `object` The storefront details. Used when deploying a storefront client application\n  - **name** | `string` The name of the marketplace\n  - **subdomain** | `string` Domain where storefront will be hosted\n  - **description** | `string` The description of the marketplace\n- **collections** | `string[]` The list of collections to be added to the marketplace. Used when deploying a storefront client application\n- **skip_preflight** | `boolean` Skip preflight checks. Default is false\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"successfully created solana marketplace\",\n    \"data\": {\n        \"marketplace\": {\n            \"name\": \"sapphire-casual\",\n            \"collections\": [],\n            \"auction_house\": \"2j3E5PHEVTBJEKC5AQWonNj3ThG5rsZKS22D6tsgCn8g\",\n            \"authority\": \"784SzkwZ97zkuTjtiaBkRuhyy85WVVT8LP9XqJKEyLCG\",\n            \"auction_house_treasury\": \"2gEmSnaerc34uq8Kg9G4XimrFuDqu5nRGssBrQV1egBc\",\n            \"auction_house_fee_account\": \"29neYFxj57kv89UsZdk8bTAsa2HRUV1FkPyUe7hRhmwX\",\n            \"fee_withdrawal_destination\": \"784SzkwZ97zkuTjtiaBkRuhyy85WVVT8LP9XqJKEyLCG\",\n            \"treasury_mint\": \"So11111111111111111111111111111111111111112\",\n            \"treasury_withdrawal_destination\": \"784SzkwZ97zkuTjtiaBkRuhyy85WVVT8LP9XqJKEyLCG\",\n            \"seller_fee_basis_points\": 100,\n            \"signature\": \"4xeqaEPUMwxkABDP4itUTR1zg9AsbTo47sqXfzYV7UuUuZAdLQ7G9Ub78ayxEJuzLXxg42T4GkZU2BZNDWLr6KRL\"\n        },\n        \"transactionStatus\": \"done\",\n        \"signature\": \"4xeqaEPUMwxkABDP4itUTR1zg9AsbTo47sqXfzYV7UuUuZAdLQ7G9Ub78ayxEJuzLXxg42T4GkZU2BZNDWLr6KRL\"\n    }\n}"}],"_postman_id":"fbc20322-77e4-48ff-924f-7095ca12acb3"},{"name":"Withdraw collected royalty fees from marketplace","id":"c717d54b-f2d2-498c-8048-30264bf225cc","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"amount\": 100\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/solana/:network/asset/marketplaces/fee/withdraw","description":"<p>**This endpoint is used to withdraw collected royalty fees from marketplace</p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>amount</strong> | <code>integer</code> Amount of fees to withdraw</li>\n</ul>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>treasury_mint</strong> | <code>string</code> The payment token address of the marketplace. Default is SOL</li>\n<li><strong>skip_preflight</strong> | <code>boolean</code> Skip preflight checks. Default is false</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","asset","marketplaces","fee","withdraw"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"f425ede5-98f4-4a4c-ac3e-77c3393f57a7","description":{"content":"<p>Solana Network</p>\n","type":"text/plain"},"type":"any","value":"devnet","key":"network"}]}},"response":[{"id":"acbe083d-6752-4aeb-9a5b-74bfa996b5e1","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"amount\": 100\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/asset/marketplaces/fee/withdraw","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","asset","marketplaces","fee","withdraw"],"variable":[{"key":"network","value":"devnet","description":"Solana Network"}]},"description":"**This endpoint is used to withdraw collected royalty fees from marketplace\n\n*Required parameters:*\n- **amount** | `integer` Amount of fees to withdraw\n\n*Optional parameters:*\n- **treasury_mint** | `string` The payment token address of the marketplace. Default is SOL\n- **skip_preflight** | `boolean` Skip preflight checks. Default is false\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"successfully withdrew fees from solana marketplace\"\n}"}],"_postman_id":"c717d54b-f2d2-498c-8048-30264bf225cc"}],"id":"4a09c8bc-4e07-4669-a55b-0630a628f016","_postman_id":"4a09c8bc-4e07-4669-a55b-0630a628f016","description":""},{"name":"Mint","item":[{"name":"Get minted collections","id":"054281f0-ce73-4551-8904-1a6067831c39","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/solana/:network/asset/mint/get-collections","description":"<p><strong>This endpoint is used to fetch collections that user already minted</strong></p>\n","urlObject":{"path":["v2","solana",":network","asset","mint","get-collections"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"6976a761-5c2a-4851-a074-d9533a77bd9d","type":"any","value":"devnet","key":"network"}]}},"response":[{"id":"6266f215-9456-4e75-a6c1-8ccb4c6e7138","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/asset/mint/get-collections","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","asset","mint","get-collections"],"variable":[{"key":"network","value":"devnet"}]},"description":"**This endpoint is used to fetch collections that user already minted**\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"\",\n    \"data\": []\n}"}],"_postman_id":"054281f0-ce73-4551-8904-1a6067831c39"},{"name":"Get nfts minted on collection","id":"aeb62896-fef7-45ec-8742-abb8fd8eda14","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/solana/:network/asset/mint/get-collection-nfts/:collection_mint","description":"<p><strong>This endpoint is used to fetch nfts on collection that user already minted</strong></p>\n","urlObject":{"path":["v2","solana",":network","asset","mint","get-collection-nfts",":collection_mint"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"621d2b2f-b2f9-4989-8d9e-f5ca688577a2","type":"any","value":"devnet","key":"network"},{"id":"7f7e5881-b378-4016-94c1-cbe7a6829167","type":"any","value":"DVzDHpnx3EiryCozhcCEZj4qmp7Qo3YDFkpEpvUqEc13","key":"collection_mint"}]}},"response":[{"id":"aa382738-ccd1-409a-ae38-4821bed01b6d","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/asset/mint/get-collection-nfts/:collection_mint","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","asset","mint","get-collection-nfts",":collection_mint"],"variable":[{"key":"network","value":"devnet"},{"key":"collection_mint","value":"DVzDHpnx3EiryCozhcCEZj4qmp7Qo3YDFkpEpvUqEc13"}]},"description":"**This endpoint is used to fetch nfts on collection that user already minted**\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"\",\n    \"data\": []\n}"}],"_postman_id":"aeb62896-fef7-45ec-8742-abb8fd8eda14"},{"name":"Mint a new NFT Collection","id":"07504f03-f271-4990-a2bb-5f52111e3219","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"url\": \"https://mirror-web.mirrorworld.fun/api/v1/mirror/metadata/14157\",\n    \"confirmation\": \"finalized\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/solana/:network/asset/mint/collection","description":"<p><strong>This endpoint is used to mint a new NFT collection</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>url</strong> | <code>string</code> The url of the collection's json config</li>\n</ul>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>name</strong> | <code>string</code> The name of the collection</li>\n<li><strong>symbol</strong> | <code>string</code> The symbol of the collection</li>\n<li><strong>to_wallet_address</strong> | <code>string</code> The wallet address to mint the collection to. Defaults to the wallet address of the user</li>\n<li><strong>seller_fee_basis_points</strong> | <code>integer</code> The seller fee basis points of the collection</li>\n<li><strong>confirmation</strong> | <code>string</code> The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed</li>\n<li><strong>skip_preflight</strong> | <code>boolean</code> Skip preflight check. Default is false</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","asset","mint","collection"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"14967c86-921d-44c4-b789-80c8da03a052","description":{"content":"<p>Solana network</p>\n","type":"text/plain"},"type":"any","value":"devnet","key":"network"}]}},"response":[{"id":"6ccfffdd-59b1-4ba6-9b8e-6327e30b633f","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"url\": \"https://mirror-web.mirrorworld.fun/api/v1/mirror/metadata/14157\",\n    \"confirmation\": \"finalized\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/asset/mint/collection","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","asset","mint","collection"],"variable":[{"key":"network","value":"devnet","description":"Solana network"}]},"description":"**This endpoint is used to mint a new NFT collection**\n\n*Required parameters:*\n- **url** | `string` The url of the collection's json config\n\n*Optional parameters:*\n- **name** | `string` The name of the collection\n- **symbol** | `string` The symbol of the collection\n- **to_wallet_address** | `string` The wallet address to mint the collection to. Defaults to the wallet address of the user\n- **seller_fee_basis_points** | `integer` The seller fee basis points of the collection\n- **confirmation** | `string` The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed\n- **skip_preflight** | `boolean` Skip preflight check. Default is false\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"Successfully minted collection\",\n    \"data\": {\n        \"mint_address\": \"8dZMtQgU2ePX6dmefKFunYhw1rzfKCxY1PUGabntibMd\",\n        \"url\": \"https://mirror-web.mirrorworld.fun/api/v1/mirror/metadata/14157\",\n        \"update_authority\": \"Dz1wUgWm4i3JDYmB541TbnY7NR2hKYibfEyJqt1kqWFM\",\n        \"creator_address\": \"GCeY1zY2QFz1iYekbsX1jQjtJnjyxWXtBhxAJPrvG3Bg\",\n        \"name\": \"Mirrors #14157\",\n        \"symbol\": \"MWG2\",\n        \"seller_fee_basis_points\": 425,\n        \"signature\": \"4oWLsGQLBr5PhEbv4waM2GxFM8aFjwrG21wjThdgKbgtGXariP9FX4BQS4emEzeE3ENugKQLndCeD62Yj3FEqwq2\",\n        \"status\": \"done\"\n    }\n}"}],"_postman_id":"07504f03-f271-4990-a2bb-5f52111e3219"},{"name":"Mint NFT on the collection","id":"8ed6740e-8ed5-4981-8485-cc01bba695a6","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"url\": \"https://mirror-web.mirrorworld.fun/api/v1/mirror/metadata/14157\",\n    \"collection_mint\": \"8dZMtQgU2ePX6dmefKFunYhw1rzfKCxY1PUGabntibMd\",\n    \"confirmation\": \"finalized\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/solana/:network/asset/mint/nft","description":"<p><strong>This endpoint is used to mint an NFT on the collection</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>collection_mint</strong> | <code>string</code> The mint address of the collection</li>\n<li><strong>url</strong> | <code>string</code> The url of the NFT's json config</li>\n</ul>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>to_wallet_address</strong> | <code>string</code> The wallet address to mint the NFT to. Defaults to the wallet address of the user</li>\n<li><strong>seller_fee_basis_points</strong> | <code>integer</code> The seller fee basis points of the NFT</li>\n<li><strong>confirmation</strong> | <code>string</code> The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed</li>\n<li><strong>skip_preflight</strong> | <code>boolean</code> Skip preflight check. Default is false</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","asset","mint","nft"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"c0cc625b-f44d-494e-99bf-ed8d02628e94","description":{"content":"<p>Solana network</p>\n","type":"text/plain"},"type":"any","value":"devnet","key":"network"}]}},"response":[{"id":"9dd25099-061e-4914-80c2-89b5a0de61ec","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"url\": \"https://mirror-web.mirrorworld.fun/api/v1/mirror/metadata/14157\",\n    \"collection_mint\": \"8dZMtQgU2ePX6dmefKFunYhw1rzfKCxY1PUGabntibMd\",\n    \"confirmation\": \"finalized\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/asset/mint/nft","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","asset","mint","nft"],"variable":[{"key":"network","value":"devnet","description":"Solana network"}]},"description":"**This endpoint is used to mint an NFT on the collection**\n\n*Required parameters:*\n- **collection_mint** | `string` The mint address of the collection\n- **url** | `string` The url of the NFT's json config\n\n*Optional parameters:*\n- **to_wallet_address** | `string` The wallet address to mint the NFT to. Defaults to the wallet address of the user\n- **seller_fee_basis_points** | `integer` The seller fee basis points of the NFT\n- **confirmation** | `string` The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed\n- **skip_preflight** | `boolean` Skip preflight check. Default is false\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"Successfully minted nft\",\n    \"data\": {\n        \"mint_address\": \"CWSVd6fvV22kZLpHNomeXLyb8QUVsEGJPj78EFMiTaHR\",\n        \"url\": \"https://mirror-web.mirrorworld.fun/api/v1/mirror/metadata/14157\",\n        \"update_authority\": \"Dz1wUgWm4i3JDYmB541TbnY7NR2hKYibfEyJqt1kqWFM\",\n        \"creator_address\": \"GCeY1zY2QFz1iYekbsX1jQjtJnjyxWXtBhxAJPrvG3Bg\",\n        \"name\": \"Mirrors #14157\",\n        \"symbol\": \"MWG2\",\n        \"collection\": \"8dZMtQgU2ePX6dmefKFunYhw1rzfKCxY1PUGabntibMd\",\n        \"seller_fee_basis_points\": 425,\n        \"signature\": \"52XZrBypYVawCoev5BSEkikj4xvgEmCkjeVfoQUKySUy6SGPsQjuWQ1GkC9hUeGPuCqmUhhnM3Vw9GujK8zozDUP\",\n        \"status\": \"done\"\n    }\n}"}],"_postman_id":"8ed6740e-8ed5-4981-8485-cc01bba695a6"},{"name":"Import existing NFT collection","id":"584b8430-4fad-4e79-8dea-1cf023c0c728","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"example\""}],"body":{"mode":"raw","raw":"{\n    \"collection_address\": \"example\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/solana/:network/asset/import/collection","description":"<p><strong>This endpoint is used to add existing collection and it's NFTs to a project</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>collection_address</strong> | <code>string</code> The address of a collection</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","asset","import","collection"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"4c2d0326-162e-46ad-b27c-ac186ee34367","description":{"content":"<p>Solana network</p>\n","type":"text/plain"},"type":"any","value":"","key":"network"}]}},"response":[],"_postman_id":"584b8430-4fad-4e79-8dea-1cf023c0c728"},{"name":"Import existing NFTs by creator address","id":"f951bc06-2bb0-4211-8038-6e73c2ed8bf0","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"example\""}],"body":{"mode":"raw","raw":"{\n    \"creator_address\": \"example\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/solana/:network/asset/import/creator","description":"<p><strong>This endpoint is used to add existing NFTs to a project, using creator wallet address</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>creator_address</strong> | <code>string</code> wallet The address of NFTs creator</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","asset","import","creator"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"c651b00a-23dd-41ab-bb2f-4da3428f2167","description":{"content":"<p>Solana network</p>\n","type":"text/plain"},"type":"any","value":"","key":"network"}]}},"response":[],"_postman_id":"f951bc06-2bb0-4211-8038-6e73c2ed8bf0"},{"name":"Verify config url for NFT minting","id":"74360bd9-14ff-4a4b-95f9-ff95d58e7756","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"example\""}],"body":{"mode":"raw","raw":"{\n    \"url\": \"example\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/solana/:network/asset/mint/verify-config","description":"<p><strong>This endpoint is used to verify json config on provided url</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>url</strong> | <code>string</code> The url of the json config for NFT minting</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","asset","mint","verify-config"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"e5d2daf2-8eb8-4a2b-856e-79dd08023739","description":{"content":"<p>Solana network</p>\n","type":"text/plain"},"type":"any","value":"","key":"network"}]}},"response":[],"_postman_id":"74360bd9-14ff-4a4b-95f9-ff95d58e7756"},{"name":"Update NFT metadata","id":"94ed4211-bf88-491c-bf1c-dee9d3d94440","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"mint_address\": \"CWSVd6fvV22kZLpHNomeXLyb8QUVsEGJPj78EFMiTaHR\",\n    \"url\": \"https://mirror-web.mirrorworld.fun/api/v1/mirror/metadata/14157\",\n    \"confirmation\": \"finalized\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/solana/:network/asset/mint/update","description":"<p><strong>This endpoint is used to update NFT metadata</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>mint_address</strong> | <code>string</code> The mint address of the NFT</li>\n</ul>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>collection_mint</strong> | <code>string</code> The mint address of the collection</li>\n<li><strong>url</strong> | <code>string</code> The url of the NFT's json config</li>\n<li><strong>seller_fee_basis_points</strong> | <code>integer</code> The seller fee basis points of the NFT</li>\n<li><strong>name</strong> | <code>string</code> The name of the NFT</li>\n<li><strong>symbol</strong> | <code>string</code> The symbol of the NFT</li>\n<li><strong>update_authority</strong> | <code>string</code> The update authority of the NFT</li>\n<li><strong>confirmation</strong> | <code>string</code> The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed</li>\n<li><strong>skip_preflight</strong> | <code>boolean</code> Skip preflight check. Default is false</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","asset","mint","update"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"cc957c17-5e49-4269-a314-bbc8bc99d104","description":{"content":"<p>Solana network</p>\n","type":"text/plain"},"type":"any","value":"devnet","key":"network"}]}},"response":[{"id":"4af823c7-2ec9-4d57-81ee-94221ea291c9","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"mint_address\": \"CWSVd6fvV22kZLpHNomeXLyb8QUVsEGJPj78EFMiTaHR\",\n    \"url\": \"https://mirror-web.mirrorworld.fun/api/v1/mirror/metadata/14157\",\n    \"confirmation\": \"finalized\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/asset/mint/update","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","asset","mint","update"],"variable":[{"key":"network","value":"devnet","description":"Solana network"}]},"description":"**This endpoint is used to update NFT metadata**\n\n*Required parameters:*\n- **mint_address** | `string` The mint address of the NFT\n\n*Optional parameters:*\n- **collection_mint** | `string` The mint address of the collection\n- **url** | `string` The url of the NFT's json config\n- **seller_fee_basis_points** | `integer` The seller fee basis points of the NFT\n- **name** | `string` The name of the NFT\n- **symbol** | `string` The symbol of the NFT\n- **update_authority** | `string` The update authority of the NFT\n- **confirmation** | `string` The confirmation level of the transaction. Default is finalized. Allowed values are finalized and confirmed\n- **skip_preflight** | `boolean` Skip preflight check. Default is false\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"Successfully minted nft\",\n    \"data\": {\n        \"mint_address\": \"CWSVd6fvV22kZLpHNomeXLyb8QUVsEGJPj78EFMiTaHR\",\n        \"url\": \"https://mirror-web.mirrorworld.fun/api/v1/mirror/metadata/14157\",\n        \"update_authority\": \"Dz1wUgWm4i3JDYmB541TbnY7NR2hKYibfEyJqt1kqWFM\",\n        \"creator_address\": \"GCeY1zY2QFz1iYekbsX1jQjtJnjyxWXtBhxAJPrvG3Bg\",\n        \"name\": \"Mirrors #14157\",\n        \"symbol\": \"MWG2\",\n        \"collection\": \"8dZMtQgU2ePX6dmefKFunYhw1rzfKCxY1PUGabntibMd\",\n        \"seller_fee_basis_points\": 425,\n        \"signature\": \"52XZrBypYVawCoev5BSEkikj4xvgEmCkjeVfoQUKySUy6SGPsQjuWQ1GkC9hUeGPuCqmUhhnM3Vw9GujK8zozDUP\",\n        \"status\": \"done\"\n    }\n}"}],"_postman_id":"94ed4211-bf88-491c-bf1c-dee9d3d94440"}],"id":"564ed2b7-ccbf-47ce-971d-ec96058eee18","_postman_id":"564ed2b7-ccbf-47ce-971d-ec96058eee18","description":""},{"name":"Search","item":[{"name":"Query NFT","id":"01d8a4af-cfb0-412a-9184-daacff17c9e7","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/solana/:network/asset/nft/:mint_address","description":"<p><strong>This endpoint is used to get an NFT by mint address</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>mint_address</strong> | <code>string</code> The mint address of the NFT</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","asset","nft",":mint_address"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"0b376a6a-bb4b-4434-9617-e135b751eed2","description":{"content":"<p>Solana Network</p>\n","type":"text/plain"},"type":"any","value":"devnet","key":"network"},{"id":"20912109-ae44-4b4a-8314-39b1afc80ad2","description":{"content":"<p>Mint address of the nft</p>\n","type":"text/plain"},"type":"any","value":"AiBjJ4VYmi3Ba6UU86Xnv36ttFWH2PE4hufq3B5uDfzM","key":"mint_address"}]}},"response":[{"id":"26f3f406-108f-411a-b3a1-41a821208d8e","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/asset/nft/:mint_address","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","asset","nft",":mint_address"],"variable":[{"key":"network","value":"devnet","description":"Solana Network"},{"key":"mint_address","value":"AiBjJ4VYmi3Ba6UU86Xnv36ttFWH2PE4hufq3B5uDfzM","description":"Mint address of the nft"}]},"description":"**This endpoint is used to get an NFT by mint address**\n\n*Required parameters:*\n- **mint_address** | `string` The mint address of the NFT\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"\",\n    \"data\": {\n        \"mintAddress\": \"AiBjJ4VYmi3Ba6UU86Xnv36ttFWH2PE4hufq3B5uDfzM\",\n        \"name\": \"Mirrors #14157\",\n        \"sellerFeeBasisPoints\": 550,\n        \"updateAuthorityAddress\": \"GCeY1zY2QFz1iYekbsX1jQjtJnjyxWXtBhxAJPrvG3Bg\",\n        \"owner\": {\n            \"address\": \"Dz1wUgWm4i3JDYmB541TbnY7NR2hKYibfEyJqt1kqWFM\"\n        },\n        \"attributes\": [],\n        \"collection\": {\n            \"mintAddress\": \"5ijAj7xjgq3X6CeBkk8d9vvXUQQ4wVsL3qJ2HVUY9NQK\"\n        }\n    }\n}"}],"_postman_id":"01d8a4af-cfb0-412a-9184-daacff17c9e7"},{"name":"Search NFTs","id":"62f3e1d7-775d-48c4-acd3-4b5f555b646d","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"mint_addresses\": []\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/solana/:network/asset/nft/mints","description":"<p><strong>This endpoint is used to search NFTs by mint addresses</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>mint_addresses</strong> | <code>string[]</code> The mint addresses of NFTs</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","asset","nft","mints"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"6e92a4ef-70e2-47bf-bb45-d3a5290a172a","description":{"content":"<p>Solana Network</p>\n","type":"text/plain"},"type":"any","value":"devnet","key":"network"}]}},"response":[{"id":"8e750878-e2f2-4c38-8d13-512264512cbe","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"mint_addresses\": []\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/asset/nft/mints","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","asset","nft","mints"],"variable":[{"key":"network","value":"devnet","description":"Solana Network"}]},"description":"**This endpoint is used to search NFTs by mint addresses**\n\n*Required parameters:*\n- **mint_addresses** | `string[]` The mint addresses of NFTs\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"\",\n    \"data\": {\n        \"nfts\": []\n    }\n}"}],"_postman_id":"62f3e1d7-775d-48c4-acd3-4b5f555b646d"},{"name":"Search NFTs by owner addresses","id":"d8ce241d-8c49-4a96-95c0-6871c5ed13f2","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"owners\": [],\n    \"limit\": 25\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/solana/:network/asset/nft/owners","description":"<p><strong>This endpoint is used to search NFTs by owner addresses</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>owners</strong> | <code>string[]</code> The owner addresses of NFTs</li>\n<li><strong>limit</strong> | <code>integer</code> The number of NFTs to return. Default is 10</li>\n<li><strong>offset</strong> | <code>integer</code> The offset of NFTs to return. Default is 0</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","asset","nft","owners"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"03d74c39-771e-4048-bc38-c43409f08e6c","description":{"content":"<p>Solana Network</p>\n","type":"text/plain"},"type":"any","value":"devnet","key":"network"}]}},"response":[{"id":"16b65c63-179a-4c4a-b8a5-779000701c91","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"owners\": [],\n    \"limit\": 25\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/asset/nft/owners","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","asset","nft","owners"],"variable":[{"key":"network","value":"devnet","description":"Solana Network"}]},"description":"**This endpoint is used to search NFTs by owner addresses**\n\n*Required parameters:*\n- **owners** | `string[]` The owner addresses of NFTs\n- **limit** | `integer` The number of NFTs to return. Default is 10\n- **offset** | `integer` The offset of NFTs to return. Default is 0\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"\",\n    \"data\": {\n        \"page\": 1,\n        \"page_size\": 25,\n        \"result\": []\n    }\n}"}],"_postman_id":"d8ce241d-8c49-4a96-95c0-6871c5ed13f2"},{"name":"Query NFTs by collection","id":"61aca70b-c7ef-4532-b061-a4c215d911ef","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/solana/:network/asset/nft/collection-mints/:collection_address","description":"<p><strong>This endpoint is used to get NFTs by collection address</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>collection_address</strong> | <code>string</code> The mint address of the NFT collection</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","asset","nft","collection-mints",":collection_address"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"3e5021c1-3750-403b-b301-f7a3c6f96037","description":{"content":"<p>Solana Network</p>\n","type":"text/plain"},"type":"any","value":"devnet","key":"network"},{"id":"7378d815-0187-4c14-a044-a9bf41920533","description":{"content":"<p>Mint address of the nfts collection</p>\n","type":"text/plain"},"type":"any","value":"AiBjJ4VYmi3Ba6UU86Xnv36ttFWH2PE4hufq3B5uDfzM","key":"collection_address"}]}},"response":[{"id":"cc135ce0-888a-49ac-8b0e-edc2236c29b7","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/asset/nft/collection-mints/:collection_address","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","asset","nft","collection-mints",":collection_address"],"variable":[{"key":"network","value":"devnet","description":"Solana Network"},{"key":"collection_address","value":"AiBjJ4VYmi3Ba6UU86Xnv36ttFWH2PE4hufq3B5uDfzM","description":"Mint address of the nfts collection"}]},"description":"**This endpoint is used to get NFTs by collection address**\n\n*Required parameters:*\n- **collection_address** | `string` The mint address of the NFT collection\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"\",\n    \"data\": {\n        \"nfts\": []\n    }\n}"}],"_postman_id":"61aca70b-c7ef-4532-b061-a4c215d911ef"},{"name":"Query NFTs by creator","id":"2f0278b7-7759-4b00-959c-b47c74cc72bc","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/solana/:network/asset/nft/creator-mints/:creator_address","description":"<p><strong>This endpoint is used to get an NFT by mint address</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>creator_address</strong> | <code>string</code> The mint address of the NFT</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","asset","nft","creator-mints",":creator_address"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"b41c8ecf-8876-4283-8bb6-3a59f08dfb9e","description":{"content":"<p>Solana Network</p>\n","type":"text/plain"},"type":"any","value":"devnet","key":"network"},{"id":"1e066f04-82ae-4d7f-be16-6184cdd7f29f","description":{"content":"<p>Wallet address of the nfts creator</p>\n","type":"text/plain"},"type":"any","value":"fddQ38sC5LTLJepztVTuidxiGwz56Uu4hbrNZpSDtqF","key":"creator_address"}]}},"response":[{"id":"9eac5578-61c6-4ee1-8c43-5647e5520597","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/asset/nft/creator-mints/:creator_address","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","asset","nft","creator-mints",":creator_address"],"variable":[{"key":"network","value":"devnet","description":"Solana Network"},{"key":"creator_address","value":"fddQ38sC5LTLJepztVTuidxiGwz56Uu4hbrNZpSDtqF","description":"Wallet address of the nfts creator"}]},"description":"**This endpoint is used to get an NFT by mint address**\n\n*Required parameters:*\n- **creator_address** | `string` The mint address of the NFT\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"\",\n    \"data\": {\n        \"nfts\": []\n    }\n}"}],"_postman_id":"2f0278b7-7759-4b00-959c-b47c74cc72bc"}],"id":"444b5bd9-d019-4be2-bbf5-919f256d06e7","_postman_id":"444b5bd9-d019-4be2-bbf5-919f256d06e7","description":""}],"id":"ebc94e56-16d1-472f-aecd-f9cfc24e25ee","_postman_id":"ebc94e56-16d1-472f-aecd-f9cfc24e25ee","description":""}],"id":"d380cb5a-a4d4-4e72-8758-9bd2db31b3c1","description":"<p>This is a description about the Asset folder</p>\n","_postman_id":"d380cb5a-a4d4-4e72-8758-9bd2db31b3c1"},{"name":"Wallet","item":[{"name":"Aptos","item":[{"name":"Get wallet transactions.","id":"2fa1caad-ce66-481c-a379-60554ed22c8f","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/aptos/:network/wallet/transactions","description":"<p><strong>Get Aptos wallet transactions</strong></p>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>limit</strong> | <code>integer</code> The limit count of transactions</li>\n<li><strong>next_before</strong> | <code>string</code> The transaction offset</li>\n</ul>\n","urlObject":{"path":["v2","aptos",":network","wallet","transactions"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"e13b676d-741a-4c62-a0fd-6f0477478922","description":{"content":"<p>Aptos Network</p>\n","type":"text/plain"},"type":"any","value":"testnet","key":"network"}]}},"response":[{"id":"2fd54a20-9f75-4029-b7e2-0aba995b1190","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/aptos/:network/wallet/transactions","host":["https://api.mirrorworld.fun"],"path":["v2","aptos",":network","wallet","transactions"],"variable":[{"key":"network","value":"testnet","description":"Aptos Network"}]},"description":"**Get Aptos wallet transactions**\n\n*Optional parameters:*\n- **limit** | `integer` The limit count of transactions\n- **next_before** | `string` The transaction offset\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"transactions\": [\n            {\n                \"version\": \"643536195\",\n                \"hash\": \"0xeae45b19a1298bb8b39f9e60f7965b37cae9b3de7053a9d7a64a64c5dc97123a\",\n                \"changes\": [],\n                \"sender\": \"0x3c2a37167afe2f1dab833abc0bf8e5a3475467e46d24a190644b0790eb0e6672\",\n                \"sequence_number\": \"0\",\n                \"payload\": {},\n                \"signature\": {},\n                \"events\": [],\n                \"timestamp\": \"123456\",\n                \"type\": \"user_transaction\"\n            }\n        ],\n        \"count\": 1,\n        \"next_before\": \"0xeae45b19a1298bb8b39f9e60f7965b37cae9b3de7053a9d7a64a64c5dc97123a\"\n    }\n}"}],"_postman_id":"2fa1caad-ce66-481c-a379-60554ed22c8f"},{"name":"Get wallet transaction by hash.","id":"98f0237a-f853-403e-9316-55daed88cbe0","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/aptos/:network/wallet/transactions/:hash","description":"<p><strong>Get Aptos transaction detail info</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>hash</strong> | <code>string</code> The transaction hash to be queried</li>\n</ul>\n","urlObject":{"path":["v2","aptos",":network","wallet","transactions",":hash"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"987061da-d867-449f-a733-dc5d85d160ce","description":{"content":"<p>Aptos Network</p>\n","type":"text/plain"},"type":"any","value":"testnet","key":"network"},{"id":"7d02928b-0e03-410d-8431-5bb2048f16a7","type":"any","value":"0xeae45b19a1298bb8b39f9e60f7965b37cae9b3de7053a9d7a64a64c5dc97123a","key":"hash"}]}},"response":[{"id":"f0deeac8-43df-4a79-96b8-7d06563bd81d","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/aptos/:network/wallet/transactions/:hash","host":["https://api.mirrorworld.fun"],"path":["v2","aptos",":network","wallet","transactions",":hash"],"variable":[{"key":"network","value":"testnet","description":"Aptos Network"},{"key":"hash","value":"0xeae45b19a1298bb8b39f9e60f7965b37cae9b3de7053a9d7a64a64c5dc97123a"}]},"description":"**Get Aptos transaction detail info**\n\n*Required parameters:*\n- **hash** | `string` The transaction hash to be queried\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"version\": \"643536195\",\n        \"hash\": \"0xeae45b19a1298bb8b39f9e60f7965b37cae9b3de7053a9d7a64a64c5dc97123a\",\n        \"changes\": [],\n        \"sender\": \"0x3c2a37167afe2f1dab833abc0bf8e5a3475467e46d24a190644b0790eb0e6672\",\n        \"sequence_number\": \"0\",\n        \"payload\": {},\n        \"signature\": {},\n        \"events\": [],\n        \"timestamp\": \"123456\",\n        \"type\": \"user_transaction\"\n    }\n}"}],"_postman_id":"98f0237a-f853-403e-9316-55daed88cbe0"},{"name":"Transfer Aptos to another address.","id":"9a2a7b15-480a-42f0-8241-ceabeb3308cf","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"to_publickey\": \"0xf6758fe93f5a95e2de65579730016e6b7230befe2ba2816506d65cd00a87d78c\",\n    \"amount\": 1\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/aptos/:network/wallet/transfer-aptos","description":"<p><strong>Transfer Aptos to another address</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>to_publickey</strong> | <code>string</code> The receiver wallet address</li>\n<li><strong>amount</strong> | <code>integer</code> The transfer amount</li>\n</ul>\n","urlObject":{"path":["v2","aptos",":network","wallet","transfer-aptos"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"3a3a2e06-315b-4f3a-a9da-557b926b350d","description":{"content":"<p>Aptos Network</p>\n","type":"text/plain"},"type":"any","value":"testnet","key":"network"}]}},"response":[{"id":"3a640c09-ae10-4f1c-9364-0bf200a041ab","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"to_publickey\": \"0xf6758fe93f5a95e2de65579730016e6b7230befe2ba2816506d65cd00a87d78c\",\n    \"amount\": 1\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/aptos/:network/wallet/transfer-aptos","host":["https://api.mirrorworld.fun"],"path":["v2","aptos",":network","wallet","transfer-aptos"],"variable":[{"key":"network","value":"testnet","description":"Aptos Network"}]},"description":"**Transfer Aptos to another address**\n\n*Required parameters:*\n- **to_publickey** | `string` The receiver wallet address\n- **amount** | `integer` The transfer amount\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"digest\": \"794efHjGefsEZ4D1D7K813aVH8XXgmkQTfNHgiSruNAc\"\n    }\n}"}],"_postman_id":"9a2a7b15-480a-42f0-8241-ceabeb3308cf"},{"name":"Get wallet tokens.","id":"1482cf66-a714-4162-b02d-ce343fa739a2","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/aptos/:network/wallet/tokens","description":"<p><strong>Get Aptos wallet tokens.</strong></p>\n","urlObject":{"path":["v2","aptos",":network","wallet","tokens"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"c40c663c-f494-4bd9-b881-473cdfb7c93c","description":{"content":"<p>Aptos Network</p>\n","type":"text/plain"},"type":"any","value":"testnet","key":"network"}]}},"response":[{"id":"b51216ce-5a64-4143-81dc-92b1f87a17cb","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/aptos/:network/wallet/tokens","host":["https://api.mirrorworld.fun"],"path":["v2","aptos",":network","wallet","tokens"],"variable":[{"key":"network","value":"testnet","description":"Aptos Network"}]},"description":"**Get Aptos wallet tokens.**\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"aptos\": \"123\",\n        \"tokens\": [\n            {\n                \"amount\": \"101000000\",\n                \"coin_type\": \"0x61d7762b4867d99f5c535ed0b048651c13055449642c360bc49b81a3e1268638::moon_coin::MoonCoin\",\n                \"coin_type_hash\": \"b6b3cb6aab2b065a6f13690698cee4ff2a6595835ee030790eae477b5cf976bb\",\n                \"last_transaction_timestamp\": \"2023-08-21T03:51:51.600Z\",\n                \"last_transaction_version\": \"643785755\",\n                \"owner_address\": \"0x3c2a37167afe2f1dab833abc0bf8e5a3475467e46d24a190644b0790eb0e6672\"\n            }\n        ]\n    }\n}"}],"_postman_id":"1482cf66-a714-4162-b02d-ce343fa739a2"}],"id":"edacfc82-95a0-4a3f-ba11-d45bb2d4d89a","_postman_id":"edacfc82-95a0-4a3f-ba11-d45bb2d4d89a","description":""},{"name":"EVM","item":[{"name":"Get wallet transactions.","id":"46f9c5de-64b5-4585-a0a1-24fc2812da19","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/:chain/:network/wallet/transactions?limit=10","description":"<p><strong>Get wallet transactions</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>limit</strong> | <code>integer</code> The transaction limit</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","wallet","transactions"],"host":["https://api.mirrorworld.fun"],"query":[{"description":{"content":"<p>maximum number of records to return</p>\n","type":"text/plain"},"key":"limit","value":"10"}],"variable":[{"id":"9f8cf062-9f6b-4e03-aefd-0a3355d0c7dc","description":{"content":"<p>EVM chain</p>\n","type":"text/plain"},"type":"any","value":"ethereum","key":"chain"},{"id":"b7dbd473-1cf2-4683-9586-582cbd985712","description":{"content":"<p>Ethereum Network</p>\n","type":"text/plain"},"type":"any","value":"mainnet","key":"network"}]}},"response":[{"id":"a0d0c477-930f-4121-92f6-a1a973770966","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/wallet/transactions?limit=10","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","wallet","transactions"],"query":[{"description":"maximum number of records to return","key":"limit","value":"10"}],"variable":[{"key":"chain","value":"ethereum","description":"EVM chain"},{"key":"network","value":"mainnet","description":"Ethereum Network"}]},"description":"**Get wallet transactions**\n\n*Required parameters:*\n- **limit** | `integer` The transaction limit\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"transactions\": [\n            {\n                \"from\": \"aaa\",\n                \"to\": \"bbb\",\n                \"nonce\": \"ccc\",\n                \"data\": \"ddd\"\n            }\n        ],\n        \"count\": 1\n    }\n}"}],"_postman_id":"46f9c5de-64b5-4585-a0a1-24fc2812da19"},{"name":"Get wallet transaction by signature.","id":"e16c943c-b259-464b-a34a-215dc7ab01e2","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/:chain/:network/wallet/transactions/:signature","description":"<p><strong>Get wallet transaction by signature</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>signature</strong> | <code>string</code> The signature to be queried</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","wallet","transactions",":signature"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"baeee229-2b8e-4195-9d1c-983d395bbb98","description":{"content":"<p>EVM chain</p>\n","type":"text/plain"},"type":"any","value":"ethereum","key":"chain"},{"id":"000d00cc-02d3-4dc7-80b4-16628363a062","description":{"content":"<p>Ethereum Network</p>\n","type":"text/plain"},"type":"any","value":"mainnet","key":"network"},{"id":"301ec461-607d-4d60-be85-45f05cdfb2a9","type":"any","value":"example signature","key":"signature"}]}},"response":[{"id":"4afbe1de-6ad6-40f3-8f62-200d707d44ac","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/wallet/transactions/:signature","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","wallet","transactions",":signature"],"variable":[{"key":"chain","value":"ethereum","description":"EVM chain"},{"key":"network","value":"mainnet","description":"Ethereum Network"},{"key":"signature","value":"example signature"}]},"description":"**Get wallet transaction by signature**\n\n*Required parameters:*\n- **signature** | `string` The signature to be queried\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"from\": \"aaa\",\n        \"to\": \"bbb\",\n        \"nonce\": \"ccc\",\n        \"data\": \"ddd\"\n    }\n}"}],"_postman_id":"e16c943c-b259-464b-a34a-215dc7ab01e2"},{"name":"Get user wallet tokens","id":"ac7f588b-957a-452a-914b-3ae64bc263df","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/:chain/:network/wallet/tokens","description":"<p><strong>Get user wallet tokens</strong></p>\n","urlObject":{"path":["v2",":chain",":network","wallet","tokens"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"7e154b5c-b6f9-49b6-a4a8-1eabfc567f7d","description":{"content":"<p>EVM chain</p>\n","type":"text/plain"},"type":"any","value":"ethereum","key":"chain"},{"id":"a95e489e-d118-4a17-928b-68e535e96bfe","description":{"content":"<p>Ethereum Network</p>\n","type":"text/plain"},"type":"any","value":"mainnet","key":"network"}]}},"response":[{"id":"77420636-df8f-4ef0-a33c-34a4f1a4a02e","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/wallet/tokens","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","wallet","tokens"],"variable":[{"key":"chain","value":"ethereum","description":"EVM chain"},{"key":"network","value":"mainnet","description":"Ethereum Network"}]},"description":"**Get user wallet tokens**\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"eth\": \"1000000000000000000000000\",\n        \"tokens\": [\n            {\n                \"token_address\": \"0x0206addddd61731e191bc311fe676013c34a1adb\",\n                \"name\": \"TestToken\",\n                \"symbol\": \"TT\",\n                \"logo\": \"aaa\",\n                \"thumbnail\": \"aaa\",\n                \"decimals\": 18,\n                \"balance\": \"1000000000000000000000000\"\n            }\n        ]\n    }\n}"}],"_postman_id":"ac7f588b-957a-452a-914b-3ae64bc263df"},{"name":"Get user tokens by wallet address","id":"25775f90-c568-48bd-9212-0726b133287e","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/:chain/:network/wallet/tokens/:wallet_address","description":"<p><strong>Get user wallet tokens by user address</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>wallet_address</strong> | <code>string</code> The wallet address</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","wallet","tokens",":wallet_address"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"9e6cfed6-39eb-490e-a34f-a35934f25fb9","description":{"content":"<p>EVM chain</p>\n","type":"text/plain"},"type":"any","value":"ethereum","key":"chain"},{"id":"6cac90fb-b26a-42ee-9f45-3bac232e4cfc","description":{"content":"<p>Ethereum Network</p>\n","type":"text/plain"},"type":"any","value":"mainnet","key":"network"},{"id":"d95e6e68-2fe1-4d52-9dcb-5a7893f4d7c7","type":"any","value":"example wallet address","key":"wallet_address"}]}},"response":[{"id":"b923b0ae-2f14-477a-9ec2-c63cdcb1925a","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/wallet/tokens/:wallet_address","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","wallet","tokens",":wallet_address"],"variable":[{"key":"chain","value":"ethereum","description":"EVM chain"},{"key":"network","value":"mainnet","description":"Ethereum Network"},{"key":"wallet_address","value":"example wallet address"}]},"description":"**Get user wallet tokens by user address**\n\n*Required parameters:*\n- **wallet_address** | `string` The wallet address\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"eth\": \"1000000000000000000000000\",\n        \"tokens\": [\n            {\n                \"token_address\": \"0x0206addddd61731e191bc311fe676013c34a1adb\",\n                \"name\": \"TestToken\",\n                \"symbol\": \"TT\",\n                \"logo\": \"aaa\",\n                \"thumbnail\": \"aaa\",\n                \"decimals\": 18,\n                \"balance\": \"1000000000000000000000000\"\n            }\n        ]\n    }\n}"}],"_postman_id":"25775f90-c568-48bd-9212-0726b133287e"},{"name":"Get transactions by wallet address","id":"066d34f0-b48d-444c-a831-f2ca27201152","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/:chain/:network/wallet/:wallet_address/transactions?limit=10","description":"<p><strong>Get wallet transactions</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>limit</strong> | <code>integer</code> The query limit of transactions</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","wallet",":wallet_address","transactions"],"host":["https://api.mirrorworld.fun"],"query":[{"description":{"content":"<p>maximum number of records to return</p>\n","type":"text/plain"},"key":"limit","value":"10"}],"variable":[{"id":"2e713219-0003-4920-90f3-5250efa84874","description":{"content":"<p>EVM chain</p>\n","type":"text/plain"},"type":"any","value":"ethereum","key":"chain"},{"id":"865bd244-58da-4a7f-b5e0-ec2565699ebd","description":{"content":"<p>Ethereum Network</p>\n","type":"text/plain"},"type":"any","value":"mainnet","key":"network"},{"id":"82911211-a2a7-498f-af2e-6b97ad8c546e","type":"any","value":"example wallet address","key":"wallet_address"}]}},"response":[{"id":"7da3efaf-f07a-46fd-b170-2bb1c4e648a5","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/wallet/:wallet_address/transactions?limit=10","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","wallet",":wallet_address","transactions"],"query":[{"description":"maximum number of records to return","key":"limit","value":"10"}],"variable":[{"key":"chain","value":"ethereum","description":"EVM chain"},{"key":"network","value":"mainnet","description":"Ethereum Network"},{"key":"wallet_address","value":"example wallet address"}]},"description":"**Get wallet transactions**\n\n*Required parameters:*\n- **limit** | `integer` The query limit of transactions\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"transactions\": [\n            {\n                \"from\": \"aaa\",\n                \"to\": \"bbb\",\n                \"nonce\": \"ccc\",\n                \"data\": \"ddd\"\n            }\n        ],\n        \"count\": 1\n    }\n}"}],"_postman_id":"066d34f0-b48d-444c-a831-f2ca27201152"},{"name":"Personal sign tx","id":"4e7f49ae-5cbf-4d13-bd2f-975d991e2b51","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"data\": \"hello world\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/wallet/personal-sign","description":"<p><strong>Ethereum personal sign transaction</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>data</strong> | <code>string</code> The message need to be signed</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","wallet","personal-sign"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"e5ae05a1-a00a-4507-8ebc-6c86de565996","description":{"content":"<p>EVM chain</p>\n","type":"text/plain"},"type":"any","value":"ethereum","key":"chain"},{"id":"6237462d-6cf8-4227-80fb-d31852ca19c9","description":{"content":"<p>Ethereum Network</p>\n","type":"text/plain"},"type":"any","value":"mainnet","key":"network"}]}},"response":[{"id":"b5ab31d9-8dc8-4101-8b8b-4561b72ee60f","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"data\": \"hello world\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/wallet/personal-sign","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","wallet","personal-sign"],"variable":[{"key":"chain","value":"ethereum","description":"EVM chain"},{"key":"network","value":"mainnet","description":"Ethereum Network"}]},"description":"**Ethereum personal sign transaction**\n\n*Required parameters:*\n- **data** | `string` The message need to be signed\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"tx_signature\": \"example transaction signature\"\n    }\n}"}],"_postman_id":"4e7f49ae-5cbf-4d13-bd2f-975d991e2b51"},{"name":"Sign typed data","id":"be7ff6ad-c2d4-4f01-bbee-af4af0f7a4bc","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"data\": [\n        {\n            \"name\": \"data\",\n            \"type\": \"string\",\n            \"value\": \"hello world\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/wallet/sign-typed-data","description":"<p><strong>Ethereum sign typed data</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>data</strong> | <code>array</code> The typed data object</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","wallet","sign-typed-data"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"fdc7a2e3-94ba-4c7d-af4b-2bdaab94f288","description":{"content":"<p>EVM chain</p>\n","type":"text/plain"},"type":"any","value":"ethereum","key":"chain"},{"id":"d9966ec1-2e64-49df-9dfe-f90438478828","description":{"content":"<p>Ethereum Network</p>\n","type":"text/plain"},"type":"any","value":"mainnet","key":"network"}]}},"response":[{"id":"bf20d1e2-d721-480d-9d67-f268e9c15566","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"data\": [\n        {\n            \"name\": \"data\",\n            \"type\": \"string\",\n            \"value\": \"hello world\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/wallet/sign-typed-data","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","wallet","sign-typed-data"],"variable":[{"key":"chain","value":"ethereum","description":"EVM chain"},{"key":"network","value":"mainnet","description":"Ethereum Network"}]},"description":"**Ethereum sign typed data**\n\n*Required parameters:*\n- **data** | `array` The typed data object\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"tx_signature\": \"example transaction signature\"\n    }\n}"}],"_postman_id":"be7ff6ad-c2d4-4f01-bbee-af4af0f7a4bc"},{"name":"Sign typed data with version","id":"fab1e345-9135-47bc-9be5-b5893e2b2c12","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"messageType\": [\n        {\n            \"name\": \"data\",\n            \"type\": \"string\"\n        }\n    ],\n    \"domain\": {\n        \"name\": \"example.metamask.com\",\n        \"version\": \"1\",\n        \"chainId\": 1,\n        \"verifyingContract\": \"0x0000000000000000000000000000000000000000\",\n        \"salt\": [\n            1,\n            2,\n            3\n        ],\n        \"extraField\": \"stuff\"\n    },\n    \"primaryType\": \"Message\",\n    \"message\": {\n        \"data\": \"hello\"\n    },\n    \"version\": 3\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/wallet/sign-typed-data-version","description":"<p><strong>Sign typed data with version</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>messageType</strong> | <code>array</code> The list of message types</li>\n<li><strong>domain.name</strong> | <code>object</code> The domain name</li>\n<li><strong>domain.version</strong> | <code>string</code> The domain version</li>\n<li><strong>domain.chainId</strong> | <code>integer</code> The domain chain id</li>\n<li><strong>domain.verifyingContract</strong> | <code>string</code> The domain contract address</li>\n<li><strong>domain.salt</strong> | <code>integer[]</code> The domain salt integer list</li>\n<li><strong>domain.extraField</strong> | <code>string</code> The domain extra field</li>\n<li><strong>primary_type</strong> | <code>string</code> The primary type</li>\n<li><strong>message.data</strong> | <code>string</code> The message data</li>\n<li><strong>version</strong> | <code>integer</code> The sign version, should be 3 or 4</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","wallet","sign-typed-data-version"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"64a87e1b-eed0-49f4-ac7d-11c36da6f275","description":{"content":"<p>EVM chain</p>\n","type":"text/plain"},"type":"any","value":"ethereum","key":"chain"},{"id":"624ceff6-1865-4cf6-8a44-42fd99f11dd2","description":{"content":"<p>Ethereum Network</p>\n","type":"text/plain"},"type":"any","value":"mainnet","key":"network"}]}},"response":[{"id":"0ffd3612-b466-4fd9-82f6-13312cb15464","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"messageType\": [\n        {\n            \"name\": \"data\",\n            \"type\": \"string\"\n        }\n    ],\n    \"domain\": {\n        \"name\": \"example.metamask.com\",\n        \"version\": \"1\",\n        \"chainId\": 1,\n        \"verifyingContract\": \"0x0000000000000000000000000000000000000000\",\n        \"salt\": [\n            1,\n            2,\n            3\n        ],\n        \"extraField\": \"stuff\"\n    },\n    \"primaryType\": \"Message\",\n    \"message\": {\n        \"data\": \"hello\"\n    },\n    \"version\": 3\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/wallet/sign-typed-data-version","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","wallet","sign-typed-data-version"],"variable":[{"key":"chain","value":"ethereum","description":"EVM chain"},{"key":"network","value":"mainnet","description":"Ethereum Network"}]},"description":"**Sign typed data with version**\n\n*Required parameters:*\n- **messageType** | `array` The list of message types\n- **domain.name** | `object` The domain name\n- **domain.version** | `string` The domain version\n- **domain.chainId** | `integer` The domain chain id\n- **domain.verifyingContract** | `string` The domain contract address\n- **domain.salt** | `integer[]` The domain salt integer list\n- **domain.extraField** | `string` The domain extra field\n- **primary_type** | `string` The primary type\n- **message.data** | `string` The message data\n- **version** | `integer` The sign version, should be 3 or 4\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"tx_signature\": \"example transaction signature\"\n    }\n}"}],"_postman_id":"fab1e345-9135-47bc-9be5-b5893e2b2c12"},{"name":"Sign transaction and send to chain","id":"6ae60313-3a10-485a-a074-f6b68c17a03d","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"nonce\": 15,\n    \"gasPrice\": \"0x09284e242\",\n    \"gasLimit\": \"0x31929\",\n    \"to\": \"0xAeAd331622371228A0388E8D4909aC77681AF1b8\",\n    \"value\": \"0x02\",\n    \"data\": \"0x7f7465737432000000000000000000000000000000000000000000000000000000600057\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/wallet/send-tx","description":"<p><strong>Sign transaction and send to chain</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>nonce</strong> | <code>string</code> The transaction nonce, should be hex string</li>\n<li><strong>gasPrice</strong> | <code>string</code> The transaction gas price, should be hex string</li>\n<li><strong>gasLimit</strong> | <code>string</code> The transaction gas limit, should be hex string</li>\n<li><strong>to</strong> | <code>string</code> The receiver address</li>\n<li><strong>value</strong> | <code>string</code> The transaction value</li>\n<li><strong>data</strong> | <code>string</code> The transaction data</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","wallet","send-tx"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"d094f44e-75ce-420e-81ba-168c18750547","description":{"content":"<p>EVM chain</p>\n","type":"text/plain"},"type":"any","value":"ethereum","key":"chain"},{"id":"ea11f944-afb3-4b0d-83b1-c4324263f9e3","description":{"content":"<p>Ethereum Network</p>\n","type":"text/plain"},"type":"any","value":"mainnet","key":"network"}]}},"response":[{"id":"5a342322-6276-4dea-9ebf-51a966445b6b","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"nonce\": 15,\n    \"gasPrice\": \"0x09284e242\",\n    \"gasLimit\": \"0x31929\",\n    \"to\": \"0xAeAd331622371228A0388E8D4909aC77681AF1b8\",\n    \"value\": \"0x02\",\n    \"data\": \"0x7f7465737432000000000000000000000000000000000000000000000000000000600057\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/wallet/send-tx","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","wallet","send-tx"],"variable":[{"key":"chain","value":"ethereum","description":"EVM chain"},{"key":"network","value":"mainnet","description":"Ethereum Network"}]},"description":"**Sign transaction and send to chain**\n\n*Required parameters:*\n- **nonce** | `string` The transaction nonce, should be hex string\n- **gasPrice** | `string` The transaction gas price, should be hex string\n- **gasLimit** | `string` The transaction gas limit, should be hex string\n- **to** | `string` The receiver address\n- **value** | `string` The transaction value\n- **data** | `string` The transaction data\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"tx_hash\": \"0xb5105ed90275e87b5d2e746706e4f280d228f2cd7f972fe927f7f78847fd1c07\"\n    }\n}"}],"_postman_id":"6ae60313-3a10-485a-a074-f6b68c17a03d"},{"name":"Transfer token to another address.","id":"c17d68ac-3985-4a0a-aeb6-4eb3145414f4","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"to\": \"wallet address\",\n    \"amount\": \"0.001\",\n    \"contract\": \"token contract\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/wallet/transfer-token","description":"<p>**Transfer token to another wallet address **</p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>to</strong> | <code>string</code> The receiver address</li>\n<li><strong>amount</strong> | <code>string</code> The transfer amount</li>\n<li><strong>contract</strong> | <code>string</code> The token contract address</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","wallet","transfer-token"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"8b16b844-c9d2-459f-9c1d-0a001d749970","description":{"content":"<p>EVM chain</p>\n","type":"text/plain"},"type":"any","value":"polygon","key":"chain"},{"id":"a20ba2eb-902f-4610-8994-26f2bb0206ac","description":{"content":"<p>Ethereum Network</p>\n","type":"text/plain"},"type":"any","value":"mumbai-testnet","key":"network"}]}},"response":[{"id":"3fa17ee9-5c07-41c4-9033-f2f1fb2c86a2","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"to\": \"wallet address\",\n    \"amount\": \"0.001\",\n    \"contract\": \"token contract\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/wallet/transfer-token","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","wallet","transfer-token"],"variable":[{"key":"chain","value":"polygon","description":"EVM chain"},{"key":"network","value":"mumbai-testnet","description":"Ethereum Network"}]},"description":"**Transfer token to another wallet address **\n\n*Required parameters:*\n- **to** | `string` The receiver address\n- **amount** | `string` The transfer amount\n- **contract** | `string` The token contract address\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"tx_signature\": \"example transaction signature\"\n    }\n}"}],"_postman_id":"c17d68ac-3985-4a0a-aeb6-4eb3145414f4"},{"name":"Transfer native token to another address.","id":"3d4a6d14-faae-42a5-a57f-7555e19f6084","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"to\": \"wallet address\",\n    \"amount\": \"0.001\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/wallet/transfer-native-token","description":"<p>**Transfer native token to another wallet address **</p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>to</strong> | <code>string</code> The receiver address</li>\n<li><strong>amount</strong> | <code>string</code> The transfer amount</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","wallet","transfer-native-token"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"3af632f7-2bb3-409e-94cd-13e7c7dbc892","description":{"content":"<p>EVM chain</p>\n","type":"text/plain"},"type":"any","value":"polygon","key":"chain"},{"id":"f7a254f7-2381-450d-ae7d-0739c212a2ad","description":{"content":"<p>Ethereum Network</p>\n","type":"text/plain"},"type":"any","value":"mumbai-testnet","key":"network"}]}},"response":[{"id":"ca698d35-c023-494b-9ff2-7aef289e009c","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"to\": \"wallet address\",\n    \"amount\": \"0.001\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/wallet/transfer-native-token","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","wallet","transfer-native-token"],"variable":[{"key":"chain","value":"polygon","description":"EVM chain"},{"key":"network","value":"mumbai-testnet","description":"Ethereum Network"}]},"description":"**Transfer native token to another wallet address **\n\n*Required parameters:*\n- **to** | `string` The receiver address\n- **amount** | `string` The transfer amount\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"tx_signature\": \"example transaction signature\"\n    }\n}"}],"_postman_id":"3d4a6d14-faae-42a5-a57f-7555e19f6084"},{"name":"transfer native token gas estimation","id":"ddb84ef2-057e-48ab-9c13-7d7236e84cd3","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"from\": \"from wallet address\",\n    \"to\": \"to wallet address\",\n    \"amount\": \"0.01\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/wallet/transfer-native-token/gas-estimation","description":"<p>**Transfer native token gas estimation **</p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>from</strong> | <code>string</code> The from address</li>\n<li><strong>to</strong> | <code>string</code> The receiver address</li>\n<li><strong>amount</strong> | <code>string</code> The transfer amount</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","wallet","transfer-native-token","gas-estimation"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"87ea5df9-9574-4b39-94a5-8be49480666b","description":{"content":"<p>EVM chain</p>\n","type":"text/plain"},"type":"any","value":"polygon","key":"chain"},{"id":"2e3fd96f-d978-4f0e-b4ca-dbee3b038554","description":{"content":"<p>Ethereum Network</p>\n","type":"text/plain"},"type":"any","value":"mumbai-testnet","key":"network"}]}},"response":[{"id":"933c4aab-de0c-4f72-ba81-7c976a27c82d","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"from\": \"from wallet address\",\n    \"to\": \"to wallet address\",\n    \"amount\": \"0.01\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/wallet/transfer-native-token/gas-estimation","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","wallet","transfer-native-token","gas-estimation"],"variable":[{"key":"chain","value":"polygon","description":"EVM chain"},{"key":"network","value":"mumbai-testnet","description":"Ethereum Network"}]},"description":"**Transfer native token gas estimation **\n\n*Required parameters:*\n- **from** | `string` The from address\n- **to** | `string` The receiver address\n- **amount** | `string` The transfer amount\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"gas\": \"0.05\"\n    }\n}"}],"_postman_id":"ddb84ef2-057e-48ab-9c13-7d7236e84cd3"},{"name":"transfer token gas estimation","id":"08c97cc1-e0f3-4e77-8952-26cced8f6128","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"from\": \"from wallet address\",\n    \"to\": \"to wallet address\",\n    \"amount\": \"1\",\n    \"contract\": \"token contract address\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/wallet/transfer-token/gas-estimation","description":"<p>**Transfer token gas estimation **</p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>from</strong> | <code>string</code> The from address</li>\n<li><strong>to</strong> | <code>string</code> The receiver address</li>\n<li><strong>amount</strong> | <code>string</code> The transfer amount</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","wallet","transfer-token","gas-estimation"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"4215744d-9ad4-4f07-8663-4727001c9cda","description":{"content":"<p>EVM chain</p>\n","type":"text/plain"},"type":"any","value":"polygon","key":"chain"},{"id":"8252b4f5-3796-4122-bcfa-8d117f1ae3e8","description":{"content":"<p>Ethereum Network</p>\n","type":"text/plain"},"type":"any","value":"mumbai-testnet","key":"network"}]}},"response":[{"id":"ccafe6cb-d3e4-49df-89be-dd5a320c33f1","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"from\": \"from wallet address\",\n    \"to\": \"to wallet address\",\n    \"amount\": \"1\",\n    \"contract\": \"token contract address\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/wallet/transfer-token/gas-estimation","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","wallet","transfer-token","gas-estimation"],"variable":[{"key":"chain","value":"polygon","description":"EVM chain"},{"key":"network","value":"mumbai-testnet","description":"Ethereum Network"}]},"description":"**Transfer token gas estimation **\n\n*Required parameters:*\n- **from** | `string` The from address\n- **to** | `string` The receiver address\n- **amount** | `string` The transfer amount\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"gas\": \"0.05\"\n    }\n}"}],"_postman_id":"08c97cc1-e0f3-4e77-8952-26cced8f6128"},{"name":"transfer nft gas estimation","id":"564ee4aa-2161-47b6-bd4a-7e432ab20635","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"from\": \"from wallet address\",\n    \"to\": \"to wallet address\",\n    \"amount\": 0,\n    \"token_id\": 1,\n    \"contract\": \"nft contract address\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/wallet/transfer-nft/gas-estimation","description":"<p>**Transfer nft gas estimation **</p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>from</strong> | <code>string</code> The from address</li>\n<li><strong>to</strong> | <code>string</code> The receiver address</li>\n<li><strong>amount</strong> | <code>integer</code> The nft amount, if ERC721 ,should be 0, if ERC1155 should be the real amount</li>\n<li><strong>token_id</strong> | <code>integer</code> The NFT token id</li>\n<li><strong>contract</strong> | <code>contract</code> The NFT contract address</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","wallet","transfer-nft","gas-estimation"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"612efbc4-1f98-4655-b093-44142e7794f4","description":{"content":"<p>EVM chain</p>\n","type":"text/plain"},"type":"any","value":"polygon","key":"chain"},{"id":"7d4e47d7-eb5a-4412-8e31-cfa86288ff5a","description":{"content":"<p>Ethereum Network</p>\n","type":"text/plain"},"type":"any","value":"mumbai-testnet","key":"network"}]}},"response":[{"id":"e7f465a2-5b78-4a31-aa32-02782cbc3946","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"from\": \"from wallet address\",\n    \"to\": \"to wallet address\",\n    \"amount\": 0,\n    \"token_id\": 1,\n    \"contract\": \"nft contract address\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/wallet/transfer-nft/gas-estimation","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","wallet","transfer-nft","gas-estimation"],"variable":[{"key":"chain","value":"polygon","description":"EVM chain"},{"key":"network","value":"mumbai-testnet","description":"Ethereum Network"}]},"description":"**Transfer nft gas estimation **\n\n*Required parameters:*\n- **from** | `string` The from address\n- **to** | `string` The receiver address\n- **amount** | `integer` The nft amount, if ERC721 ,should be 0, if ERC1155 should be the real amount\n- **token_id** | `integer` The NFT token id\n- **contract** | `contract` The NFT contract address\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"gas\": \"0.05\"\n    }\n}"}],"_postman_id":"564ee4aa-2161-47b6-bd4a-7e432ab20635"}],"id":"e5e28779-a1b1-4716-bf76-af3b5ec92b28","_postman_id":"e5e28779-a1b1-4716-bf76-af3b5ec92b28","description":""},{"name":"Solana","item":[{"name":"Get wallet transactions.","id":"bca1ca53-0821-4381-9d96-2f9bcc1d126b","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/solana/:network/wallet/transactions?limit=10&next_before=example signature","description":"<p><strong>Get solana wallet transactions</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>limit</strong> | <code>integer</code> The limit count of transactions</li>\n</ul>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>next_before</strong> | <code>string</code> The transaction offset</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","wallet","transactions"],"host":["https://api.mirrorworld.fun"],"query":[{"description":{"content":"<p>maximum number of records to return</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>start searching backwards from this transaction signature.</p>\n","type":"text/plain"},"key":"next_before","value":"example signature"}],"variable":[{"id":"d9eb1227-a992-4eb3-a657-5472914006b6","description":{"content":"<p>Solana Network</p>\n","type":"text/plain"},"type":"any","value":"devnet","key":"network"}]}},"response":[{"id":"d9920d48-19a0-4348-97a0-449d32d045c1","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/wallet/transactions?limit=10&next_before=example signature","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","wallet","transactions"],"query":[{"description":"maximum number of records to return","key":"limit","value":"10"},{"description":"start searching backwards from this transaction signature.","key":"next_before","value":"example signature"}],"variable":[{"key":"network","value":"devnet","description":"Solana Network"}]},"description":"**Get solana wallet transactions**\n\n*Required parameters:*\n- **limit** | `integer` The limit count of transactions\n\n*Optional parameters:*\n- **next_before** | `string` The transaction offset\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"transactions\": [\n            {\n                \"blockTime\": 123,\n                \"meta\": {},\n                \"slot\": 123,\n                \"transaction\": []\n            }\n        ],\n        \"count\": 1,\n        \"next_before\": \"3bpy99NSTLVjAh1VNuniN6CStik2GcLHBZK3z3v4vBsVWoRkytscdSLhgK8ZhzM9DEvxaf9LEyxQ8xBaVdTraK8\"\n    }\n}"}],"_postman_id":"bca1ca53-0821-4381-9d96-2f9bcc1d126b"},{"name":"Get transactions by wallet address.","id":"5d955b87-9520-4587-9691-72f9ef146fd6","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/solana/:network/wallet/:wallet_address/transactions?limit=10&next_before=example signature","description":"<p><strong>Get wallet transactions</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>limit</strong> | <code>integer</code> The limit count of transactions</li>\n</ul>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>next_before</strong> | <code>string</code> The transaction offset</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","wallet",":wallet_address","transactions"],"host":["https://api.mirrorworld.fun"],"query":[{"description":{"content":"<p>maximum number of records to return</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"description":{"content":"<p>start searching backwards from this transaction signature.</p>\n","type":"text/plain"},"key":"next_before","value":"example signature"}],"variable":[{"id":"bafcc310-bd77-4878-96ea-bc07221225ac","description":{"content":"<p>Solana Network</p>\n","type":"text/plain"},"type":"any","value":"devnet","key":"network"},{"id":"f93fdab0-88dc-4d30-a89e-75e5f5380ff1","type":"any","value":"example wallet address","key":"wallet_address"}]}},"response":[{"id":"4a189367-726a-4fc0-8045-5ddfc8a59d3e","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/wallet/:wallet_address/transactions?limit=10&next_before=example signature","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","wallet",":wallet_address","transactions"],"query":[{"description":"maximum number of records to return","key":"limit","value":"10"},{"description":"start searching backwards from this transaction signature.","key":"next_before","value":"example signature"}],"variable":[{"key":"network","value":"devnet","description":"Solana Network"},{"key":"wallet_address","value":"example wallet address"}]},"description":"**Get wallet transactions**\n\n*Required parameters:*\n- **limit** | `integer` The limit count of transactions\n\n*Optional parameters:*\n- **next_before** | `string` The transaction offset\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"transactions\": [\n            {\n                \"blockTime\": 123,\n                \"meta\": {},\n                \"slot\": 123,\n                \"transaction\": []\n            }\n        ],\n        \"count\": 1,\n        \"next_before\": \"3bpy99NSTLVjAh1VNuniN6CStik2GcLHBZK3z3v4vBsVWoRkytscdSLhgK8ZhzM9DEvxaf9LEyxQ8xBaVdTraK8\"\n    }\n}"}],"_postman_id":"5d955b87-9520-4587-9691-72f9ef146fd6"},{"name":"Get wallet transaction by signature.","id":"79c1ea9a-2dd4-4f53-bf89-a858b9af4580","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/solana/:network/wallet/transactions/:signature","description":"<p><strong>Get solana transaction detail info</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>signature</strong> | <code>string</code> The transaction hash to be queried</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","wallet","transactions",":signature"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"3dcd3346-858d-484b-9577-e781d7590a26","description":{"content":"<p>Solana Network</p>\n","type":"text/plain"},"type":"any","value":"devnet","key":"network"},{"id":"cbb91265-1083-4f1a-a62f-4567bbdc64ed","type":"any","value":"3bpy99NSTLVjAh1VNuniN6CStik2GcLHBZK3z3v4vBsVWoRkytscdSLhgK8ZhzM9DEvxaf9LEyxQ8xBaVdTraK8","key":"signature"}]}},"response":[{"id":"785249f6-edba-4a70-96b6-0f7e86eab1eb","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/wallet/transactions/:signature","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","wallet","transactions",":signature"],"variable":[{"key":"network","value":"devnet","description":"Solana Network"},{"key":"signature","value":"3bpy99NSTLVjAh1VNuniN6CStik2GcLHBZK3z3v4vBsVWoRkytscdSLhgK8ZhzM9DEvxaf9LEyxQ8xBaVdTraK8"}]},"description":"**Get solana transaction detail info**\n\n*Required parameters:*\n- **signature** | `string` The transaction hash to be queried\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"blockTime\": 123,\n        \"meta\": {},\n        \"slot\": 123,\n        \"transaction\": []\n    }\n}"}],"_postman_id":"79c1ea9a-2dd4-4f53-bf89-a858b9af4580"},{"name":"Get wallet tokens.","id":"1cd57398-d0aa-488b-8abc-0cc2b88fface","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/solana/:network/wallet/tokens","description":"<p><strong>Get solana wallet tokens.</strong></p>\n","urlObject":{"path":["v2","solana",":network","wallet","tokens"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"e7167f37-85ab-4836-9ef7-10a2299f3289","description":{"content":"<p>Solana Network</p>\n","type":"text/plain"},"type":"any","value":"devnet","key":"network"}]}},"response":[{"id":"b432fad0-9b59-4817-89e4-3f35490bb0d4","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/wallet/tokens","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","wallet","tokens"],"variable":[{"key":"network","value":"devnet","description":"Solana Network"}]},"description":"**Get solana wallet tokens.**\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"sol\": 123,\n        \"tokens\": [\n            {\n                \"ata\": \"aaa\",\n                \"mint\": \"bbb\",\n                \"amount\": 1,\n                \"decimals\": 9\n            }\n        ]\n    }\n}"}],"_postman_id":"1cd57398-d0aa-488b-8abc-0cc2b88fface"},{"name":"Get tokens by wallet address.","id":"606e2966-5e17-41e3-9d02-25214e4dc08a","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/solana/:network/wallet/tokens/:wallet_address","description":"<p><strong>Get solana wallet tokens</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>wallet_address</strong> | <code>string</code> The wallet address to be queried</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","wallet","tokens",":wallet_address"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"ee9d174a-7ae8-4d36-ae1d-030f437d3fe2","description":{"content":"<p>Solana Network</p>\n","type":"text/plain"},"type":"any","value":"devnet","key":"network"},{"id":"6f9a3835-a15a-41f7-a823-163055c9d25b","type":"any","value":"example wallet address","key":"wallet_address"}]}},"response":[{"id":"48a0b2b7-44b5-4973-ae8d-0d02160749d8","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/wallet/tokens/:wallet_address","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","wallet","tokens",":wallet_address"],"variable":[{"key":"network","value":"devnet","description":"Solana Network"},{"key":"wallet_address","value":"example wallet address"}]},"description":"**Get solana wallet tokens**\n\n*Required parameters:*\n- **wallet_address** | `string` The wallet address to be queried\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"sol\": 123,\n        \"tokens\": [\n            {\n                \"ata\": \"aaa\",\n                \"mint\": \"bbb\",\n                \"amount\": 1,\n                \"decimals\": 9\n            }\n        ]\n    }\n}"}],"_postman_id":"606e2966-5e17-41e3-9d02-25214e4dc08a"},{"name":"Transfer SOL to another address.","id":"39c62e7e-dc88-4bad-8674-00d4f7e5d5e0","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"x-authorization-token","value":"\"your approve token\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"to_publickey\": \"aaa\",\n    \"amount\": 1\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/solana/:network/wallet/transfer-sol","description":"<p><strong>Transfer sol to another address</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>to_publickey</strong> | <code>string</code> The receiver wallet address</li>\n<li><strong>amount</strong> | <code>integer</code> The transfer amount</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","wallet","transfer-sol"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"b631192d-6e52-4c99-8842-354af9394401","description":{"content":"<p>Solana Network</p>\n","type":"text/plain"},"type":"any","value":"devnet","key":"network"}]}},"response":[{"id":"f7911ef1-6fce-4afe-9fa0-7b345609672d","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"x-authorization-token","value":"\"your approve token\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"to_publickey\": \"aaa\",\n    \"amount\": 1\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/wallet/transfer-sol","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","wallet","transfer-sol"],"variable":[{"key":"network","value":"devnet","description":"Solana Network"}]},"description":"**Transfer sol to another address**\n\n*Required parameters:*\n- **to_publickey** | `string` The receiver wallet address\n- **amount** | `integer` The transfer amount\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"tx_signature\": \"example transaction signature\"\n    }\n}"}],"_postman_id":"39c62e7e-dc88-4bad-8674-00d4f7e5d5e0"},{"name":"Transfer token to another address.","id":"b9309529-5e66-4c39-bab0-6e83323def65","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"x-authorization-token","value":"\"your approve token\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"to_publickey\": \"aaa\",\n    \"amount\": 1,\n    \"token_mint\": \"bbb\",\n    \"decimals\": 9\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/solana/:network/wallet/transfer-token","description":"<p><strong>Transfer token to another address</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>to_publickey</strong> | <code>string</code> The receiver wallet address</li>\n<li><strong>amount</strong> | <code>integer</code> The token amount</li>\n<li><strong>token_mint</strong> | <code>string</code> The token mint address</li>\n<li><strong>decimals</strong> | <code>integer</code> The token decimals</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","wallet","transfer-token"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"570f060f-9d21-48c5-b4d4-04f241f26b8e","description":{"content":"<p>Solana Network</p>\n","type":"text/plain"},"type":"any","value":"devnet","key":"network"}]}},"response":[{"id":"1aa86417-761b-432a-bac0-acc339f8cbee","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"x-authorization-token","value":"\"your approve token\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"to_publickey\": \"aaa\",\n    \"amount\": 1,\n    \"token_mint\": \"bbb\",\n    \"decimals\": 9\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/wallet/transfer-token","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","wallet","transfer-token"],"variable":[{"key":"network","value":"devnet","description":"Solana Network"}]},"description":"**Transfer token to another address**\n\n*Required parameters:*\n- **to_publickey** | `string` The receiver wallet address\n- **amount** | `integer` The token amount\n- **token_mint** | `string` The token mint address\n- **decimals** | `integer` The token decimals\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"tx_signature\": \"example transaction signature\"\n    }\n}"}],"_postman_id":"b9309529-5e66-4c39-bab0-6e83323def65"},{"name":"Sign Solana transaction","id":"fb85bb01-cbb2-40b2-a1ed-4839307044ac","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"tx_base64\": \"AQAAAAAAAAAAAAAAAAAAAA=\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/solana/:network/wallet/sign-tx","description":"<p><strong>Solana sign transaction object</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>tx_base64</strong> | <code>string</code> base64 serialization of transaction objection.</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","wallet","sign-tx"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"0d53a87b-c682-4288-a88a-f98aaaadbac7","description":{"content":"<p>Solana Network</p>\n","type":"text/plain"},"type":"any","value":"mainnet-beta","key":"network"}]}},"response":[{"id":"77931ef6-db7f-4575-9cdc-d1eeb50752a5","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"tx_base64\": \"AQAAAAAAAAAAAAAAAAAAAA=\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/wallet/sign-tx","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","wallet","sign-tx"],"variable":[{"key":"network","value":"mainnet-beta","description":"Solana Network"}]},"description":"**Solana sign transaction object**\n\n*Required parameters:*\n- **tx_base64** | `string` base64 serialization of transaction objection.\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"tx_signature\": \"example transaction signature\"\n    }\n}"}],"_postman_id":"fb85bb01-cbb2-40b2-a1ed-4839307044ac"}],"id":"04932ec2-1b7c-4206-85a1-7d0ab0b3829c","_postman_id":"04932ec2-1b7c-4206-85a1-7d0ab0b3829c","description":""},{"name":"Sui","item":[{"name":"Get wallet transaction by digest.","id":"8516faf4-7205-43f0-a598-229809642b95","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/sui/:network/wallet/transactions/:digest","description":"<p><strong>Get Sui transaction detail info</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>digest</strong> | <code>string</code> The transaction digest to be queried</li>\n</ul>\n","urlObject":{"path":["v2","sui",":network","wallet","transactions",":digest"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"01b05dd5-87a3-4429-808e-43658f1297e0","description":{"content":"<p>Sui Network</p>\n","type":"text/plain"},"type":"any","value":"testnet","key":"network"},{"id":"f3a03dbc-db80-4cd1-a2bf-ae8008e50639","type":"any","value":"794efHjGefsEZ4D1D7K813aVH8XXgmkQTfNHgiSruNAc","key":"digest"}]}},"response":[{"id":"82f8360c-fb47-4b4b-936d-c6fa3a11954d","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/sui/:network/wallet/transactions/:digest","host":["https://api.mirrorworld.fun"],"path":["v2","sui",":network","wallet","transactions",":digest"],"variable":[{"key":"network","value":"testnet","description":"Sui Network"},{"key":"digest","value":"794efHjGefsEZ4D1D7K813aVH8XXgmkQTfNHgiSruNAc"}]},"description":"**Get Sui transaction detail info**\n\n*Required parameters:*\n- **digest** | `string` The transaction digest to be queried\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"digest\": \"794efHjGefsEZ4D1D7K813aVH8XXgmkQTfNHgiSruNAc\",\n        \"transaction\": {},\n        \"effects\": {},\n        \"events\": [],\n        \"objectChanges\": [],\n        \"balanceChanges\": [],\n        \"timestampMs\": \"1683515478818\",\n        \"checkpoint\": \"3058042\"\n    }\n}"}],"_postman_id":"8516faf4-7205-43f0-a598-229809642b95"},{"name":"Transfer Sui to another address.","id":"13c165d1-7c9b-4b0b-9bff-40e9a0edfcb6","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"to_publickey\": \"0xf6758fe93f5a95e2de65579730016e6b7230befe2ba2816506d65cd00a87d78c\",\n    \"amount\": 1\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/sui/:network/wallet/transfer-sui","description":"<p><strong>Transfer Sui to another address</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>to_publickey</strong> | <code>string</code> The receiver wallet address</li>\n<li><strong>amount</strong> | <code>integer</code> The transfer amount</li>\n</ul>\n","urlObject":{"path":["v2","sui",":network","wallet","transfer-sui"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"e9eea31f-780e-4256-98a9-c78dd8c2b19f","description":{"content":"<p>Sui Network</p>\n","type":"text/plain"},"type":"any","value":"testnet","key":"network"}]}},"response":[{"id":"fef6eedd-1bb5-428e-880c-fd13e9fc3046","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"to_publickey\": \"0xf6758fe93f5a95e2de65579730016e6b7230befe2ba2816506d65cd00a87d78c\",\n    \"amount\": 1\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/sui/:network/wallet/transfer-sui","host":["https://api.mirrorworld.fun"],"path":["v2","sui",":network","wallet","transfer-sui"],"variable":[{"key":"network","value":"testnet","description":"Sui Network"}]},"description":"**Transfer Sui to another address**\n\n*Required parameters:*\n- **to_publickey** | `string` The receiver wallet address\n- **amount** | `integer` The transfer amount\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"digest\": \"794efHjGefsEZ4D1D7K813aVH8XXgmkQTfNHgiSruNAc\"\n    }\n}"}],"_postman_id":"13c165d1-7c9b-4b0b-9bff-40e9a0edfcb6"},{"name":"Transfer token to another address.","id":"04ebf501-63a3-450e-bcc7-1dd66b84949e","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"to_publickey\": \"0xf6758fe93f5a95e2de65579730016e6b7230befe2ba2816506d65cd00a87d78c\",\n    \"amount\": 1,\n    \"token\": \"0x6bd4bed26068998c6291f496db6cdf439031e07257d2082b33bc385001cf6ade::mycoin::MYCOIN\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/sui/:network/wallet/transfer-token","description":"<p><strong>Transfer token to another address</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>to_publickey</strong> | <code>string</code> The receiver wallet address</li>\n<li><strong>amount</strong> | <code>integer</code> The token amount</li>\n<li><strong>token</strong> | <code>string</code> The token mint address</li>\n</ul>\n","urlObject":{"path":["v2","sui",":network","wallet","transfer-token"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"19def228-7969-463b-b9bc-7840f0aab6a7","description":{"content":"<p>Sui Network</p>\n","type":"text/plain"},"type":"any","value":"testnet","key":"network"}]}},"response":[{"id":"c9d24a54-3a9f-4d30-8b7b-a5a151f32200","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"to_publickey\": \"0xf6758fe93f5a95e2de65579730016e6b7230befe2ba2816506d65cd00a87d78c\",\n    \"amount\": 1,\n    \"token\": \"0x6bd4bed26068998c6291f496db6cdf439031e07257d2082b33bc385001cf6ade::mycoin::MYCOIN\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/sui/:network/wallet/transfer-token","host":["https://api.mirrorworld.fun"],"path":["v2","sui",":network","wallet","transfer-token"],"variable":[{"key":"network","value":"testnet","description":"Sui Network"}]},"description":"**Transfer token to another address**\n\n*Required parameters:*\n- **to_publickey** | `string` The receiver wallet address\n- **amount** | `integer` The token amount\n- **token** | `string` The token mint address\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"digest\": \"794efHjGefsEZ4D1D7K813aVH8XXgmkQTfNHgiSruNAc\"\n    }\n}"}],"_postman_id":"04ebf501-63a3-450e-bcc7-1dd66b84949e"},{"name":"Get wallet tokens.","id":"864a7fc2-37d1-4196-a8bd-47cbb88175b3","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/sui/:network/wallet/tokens","description":"<p><strong>Get Sui wallet tokens.</strong></p>\n","urlObject":{"path":["v2","sui",":network","wallet","tokens"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"ab3f7e83-f4e1-4db0-b765-bfc67581a84a","description":{"content":"<p>Sui Network</p>\n","type":"text/plain"},"type":"any","value":"testnet","key":"network"}]}},"response":[{"id":"dd9227be-ae4f-49cd-84a5-1d494a1154cb","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/sui/:network/wallet/tokens","host":["https://api.mirrorworld.fun"],"path":["v2","sui",":network","wallet","tokens"],"variable":[{"key":"network","value":"testnet","description":"Sui Network"}]},"description":"**Get Sui wallet tokens.**\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"sui\": \"123\",\n        \"tokens\": [\n            {\n                \"coinType\": \"0x6bd4bed26068998c6291f496db6cdf439031e07257d2082b33bc385001cf6ade::mycoin::MYCOIN\",\n                \"coinObjectCount\": 1,\n                \"totalBalance\": \"100\",\n                \"lockedBalance\": {}\n            }\n        ]\n    }\n}"}],"_postman_id":"864a7fc2-37d1-4196-a8bd-47cbb88175b3"}],"id":"a7159967-7e91-4928-8538-60c376c50d74","_postman_id":"a7159967-7e91-4928-8538-60c376c50d74","description":""}],"id":"2feda524-ea47-4b44-8675-8f5614cbb762","description":"<p>I am some docs about the Wallet endpoints!</p>\n","_postman_id":"2feda524-ea47-4b44-8675-8f5614cbb762"},{"name":"Authentication","item":[{"name":"Email Authentication","item":[{"name":"Registers a user with email.","id":"8bfa7b24-0c2f-4f5d-9fb2-f6fb90fabd14","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"email\": \"email@example.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/auth/signup","description":"<p>Registers a user with email. This issues the user's email with a\nverification code that they should use to verify their account before\ncreating an account for them.</p>\n<p><strong>Required properties</strong> </p>\n<ul>\n<li><strong><code>email</code></strong> | <code>string</code> - User's signup email address</li>\n</ul>\n","urlObject":{"path":["v2","auth","signup"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[]}},"response":[{"id":"dada91c6-2b06-4015-9e9d-c1c4bb1f6c2e","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"email\": \"email@example.com\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/auth/signup","description":"Registers a user with email. This issues the user's email with a\nverification code that they should use to verify their account before\ncreating an account for them.\n\n**Required properties** \n- **`email`** | `string` - User's signup email address\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"message\": \"Success\"\n    },\n    \"code\": 0,\n    \"message\": \"Successfully emailed \\\"email@example.com\\\" verification code. Please verify email to complete signup\"\n}"}],"_postman_id":"8bfa7b24-0c2f-4f5d-9fb2-f6fb90fabd14"},{"name":"Completes user signup with email","id":"a5f30a77-0637-4b77-9b57-7bf655555396","request":{"method":"POST","header":[{"key":"x-api-key","value":""}],"body":{"mode":"raw","raw":"{\n    \"email\": \"example\",\n    \"code\": 0,\n    \"password\": \"example\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/auth/complete-signup","description":"<p>Completes the registration and authentication of a user who registers\ntheir account using email. Successful verification will return JWT token\nto the user.</p>\n<p><strong>Required properties</strong> </p>\n<ul>\n<li><strong><code>email</code></strong> | <code>string</code> - User's signup email address</li>\n<li><strong><code>code</code></strong> | <code>string</code> - OTP code send to user's signup email address</li>\n<li><strong><code>password</code></strong> | <code>string</code> - User password.</li>\n</ul>\n","urlObject":{"path":["v2","auth","complete-signup"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[]}},"response":[],"_postman_id":"a5f30a77-0637-4b77-9b57-7bf655555396"},{"name":"Logs in a user with email and password","id":"df9f963a-7dcc-4dd5-8fc4-d2595a25ab10","request":{"method":"POST","header":[{"key":"x-api-key","value":""}],"body":{"mode":"raw","raw":"{\n    \"email\": \"example\",\n    \"password\": \"example\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/auth/login","description":"<p>Logs in a user with their email address and password</p>\n<p><strong>Required properties</strong> </p>\n<ul>\n<li><strong><code>email</code></strong> | <code>string</code> - User's signup email address</li>\n<li><strong><code>password</code></strong> | <code>string</code> - User password.</li>\n</ul>\n","urlObject":{"path":["v2","auth","login"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[]}},"response":[],"_postman_id":"df9f963a-7dcc-4dd5-8fc4-d2595a25ab10"},{"name":"Create new guest user account and wallets","id":"afd085fe-37bd-4675-9076-69b52604b4bf","request":{"method":"GET","header":[{"key":"x-api-key","value":""}],"url":"https://api.mirrorworld.fun/v2/auth/guest-login","description":"<p>Create new guest user account and wallets</p>\n","urlObject":{"path":["v2","auth","guest-login"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[]}},"response":[],"_postman_id":"afd085fe-37bd-4675-9076-69b52604b4bf"},{"name":"Checks whether is authenticated or not and returns the user object if\ntrue\n","id":"541e1d65-564b-4610-8524-bd4c3f9ac4f3","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"description":"<p>Authorization header with Bearer token</p>\n","key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/auth/me","description":"<p>Checks whether is authenticated or not and returns the user object if\ntrue</p>\n","urlObject":{"path":["v2","auth","me"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[]}},"response":[{"id":"74bb81dc-a3e1-4980-ad53-adfa624c15e8","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"description":"Authorization header with Bearer token\n","key":"Authorization","value":"\"Bearer <jwt token>\""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/auth/me","description":"Checks whether is authenticated or not and returns the user object if\ntrue\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"officia dolor ipsum consectetur exercitation\",\n    \"data\": {\n        \"id\": -61597821,\n        \"eth_address\": \"enim magna laborum\",\n        \"sol_address\": \"labore aute\",\n        \"email\": \"non esse sint Duis anim\",\n        \"email_verified\": false,\n        \"username\": \"labore deserunt eiusmod dolor\",\n        \"wallet\": {\n            \"eth_address\": \"sed sint ex\",\n            \"sol_address\": \"dolore et quis\"\n        }\n    },\n    \"code\": -83006001,\n    \"message\": \"non fugiat\"\n}"}],"_postman_id":"541e1d65-564b-4610-8524-bd4c3f9ac4f3"},{"name":"Request refresh token for user","id":"cf513764-d2ed-478c-a44b-445197a4e1b0","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"description":"<p>Refresh token used to request for user access_token</p>\n","key":"x-refresh-token","value":"\"REFRESH_TOKEN\""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/auth/refresh-token","description":"<p>Request refresh token for user</p>\n","urlObject":{"path":["v2","auth","refresh-token"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[]}},"response":[{"id":"1273bdf1-59ff-4c53-a2b0-0eb91003840a","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"description":"Refresh token used to request for user access_token","key":"x-refresh-token","value":"\"REFRESH_TOKEN\""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/auth/refresh-token","description":"Request refresh token for user"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"Duis aute\",\n    \"data\": {\n        \"access_token\": \"et nulla pari\",\n        \"refresh_token\": \"adipisicing\",\n        \"user\": {\n            \"id\": -61597821,\n            \"eth_address\": \"enim magna laborum\",\n            \"sol_address\": \"labore aute\",\n            \"email\": \"non esse sint Duis anim\",\n            \"email_verified\": false,\n            \"username\": \"labore deserunt eiusmod dolor\",\n            \"wallet\": {\n                \"eth_address\": \"sed sint ex\",\n                \"sol_address\": \"dolore et quis\"\n            }\n        }\n    },\n    \"code\": 61006994,\n    \"message\": \"ven\"\n}"}],"_postman_id":"cf513764-d2ed-478c-a44b-445197a4e1b0"},{"name":"Query user","id":"3cdefac5-4de9-4b54-bd5d-d6667db2c8fa","request":{"method":"GET","header":[{"key":"x-api-key","value":""}],"url":"https://api.mirrorworld.fun/v2/auth/user?email=","description":"<p>Query user</p>\n","urlObject":{"path":["v2","auth","user"],"host":["https://api.mirrorworld.fun"],"query":[{"description":{"content":"<p>User's email address</p>\n","type":"text/plain"},"key":"email","value":""}],"variable":[]}},"response":[],"_postman_id":"3cdefac5-4de9-4b54-bd5d-d6667db2c8fa"},{"name":"Logs out a user","id":"ec3cc54e-4277-4924-8698-e798afd34c5f","request":{"method":"POST","header":[{"key":"x-api-key","value":""}],"url":"https://api.mirrorworld.fun/v2/auth/logout","description":"<p>Logs out a user</p>\n","urlObject":{"path":["v2","auth","logout"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[]}},"response":[],"_postman_id":"ec3cc54e-4277-4924-8698-e798afd34c5f"},{"name":"reset password send verification Code","id":"5646d2ce-8d39-4e23-9775-33573260acd2","request":{"method":"POST","header":[{"key":"x-api-key","value":""}],"body":{"mode":"raw","raw":"{\n    \"email\": \"example\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/auth/request-password-reset","description":"<p>Requests user password reset. This sends password to user's email address</p>\n<p><strong>Required properties</strong> </p>\n<ul>\n<li><strong><code>email</code></strong> | <code>string</code> - User's signup email address</li>\n</ul>\n","urlObject":{"path":["v2","auth","request-password-reset"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[]}},"response":[],"_postman_id":"5646d2ce-8d39-4e23-9775-33573260acd2"},{"name":"Verify Password Reset","id":"ded1340d-534b-4c25-8c6f-e47245cdfb1e","request":{"method":"POST","header":[{"key":"x-api-key","value":""}],"body":{"mode":"raw","raw":"{\n    \"email\": \"example\",\n    \"password\": \"example\",\n    \"code\": 0\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/auth/verify-password-reset","description":"<p>Verifies user password reset.</p>\n<p><strong>Required properties</strong> </p>\n<ul>\n<li><strong><code>email</code></strong> | <code>string</code> - User's reset password email address</li>\n<li><strong><code>code</code></strong> | <code>string</code> - OTP code send to user's reset password email address</li>\n<li><strong><code>password</code></strong> | <code>string</code> - User's new password password.</li>\n</ul>\n","urlObject":{"path":["v2","auth","verify-password-reset"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[]}},"response":[],"_postman_id":"ded1340d-534b-4c25-8c6f-e47245cdfb1e"},{"name":"Request Change Email","id":"b8e51854-5699-4105-8025-d25787386335","request":{"method":"POST","header":[{"key":"x-api-key","value":""}],"body":{"mode":"raw","raw":"{\n    \"email\": \"example\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/auth/request-change-email","description":"<p>Sends the use a verification code that they will use to complete the\nemail binding</p>\n","urlObject":{"path":["v2","auth","request-change-email"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[]}},"response":[],"_postman_id":"b8e51854-5699-4105-8025-d25787386335"},{"name":"Complete Change Email","id":"a0630079-a076-4a48-806f-bf47cc585314","request":{"method":"POST","header":[{"key":"x-api-key","value":""}],"body":{"mode":"raw","raw":"{\n    \"email\": \"example\",\n    \"email_verification_code\": 0\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/auth/complete-change-email","description":"<p>Completes the email binding process with the verification code that was\nsent to the user's email address.</p>\n","urlObject":{"path":["v2","auth","complete-change-email"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[]}},"response":[],"_postman_id":"a0630079-a076-4a48-806f-bf47cc585314"}],"id":"23683b79-73e7-4f84-ac04-b4f226b02022","_postman_id":"23683b79-73e7-4f84-ac04-b4f226b02022","description":""},{"name":"Project Authentication","item":[{"name":"Logs in a user on a project with email and project credentials","id":"06a222e7-f661-412d-a78c-36bea1e3cc98","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"x-api-client-id","value":"\"example\""},{"key":"x-api-client-secret","value":"\"example\""}],"body":{"mode":"raw","raw":"{\n    \"email\": \"example\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/auth/project-login","description":"<p>Creates and logins a user on the project with email address and project credentials</p>\n<p><strong>Required properties</strong> </p>\n<ul>\n<li><strong><code>email</code></strong> | <code>string</code> - User's signup email address</li>\n</ul>\n","urlObject":{"path":["v2","auth","project-login"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[]}},"response":[],"_postman_id":"06a222e7-f661-412d-a78c-36bea1e3cc98"},{"name":"Search a user on a project with email and project credentials","id":"cdf9276e-13a4-4e8b-90eb-aa3815f538e0","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"x-api-client-id","value":"\"example\""},{"key":"x-api-client-secret","value":"\"example\""}],"url":"https://api.mirrorworld.fun/v2/auth/project-users?email=","description":"<p>Search a user on the project with email address and project credentials</p>\n<p><strong>Required properties</strong></p>\n<ul>\n<li><strong><code>email</code></strong> | <code>string</code> - User's signup email address</li>\n</ul>\n","urlObject":{"path":["v2","auth","project-users"],"host":["https://api.mirrorworld.fun"],"query":[{"description":{"content":"<p>User's email address</p>\n","type":"text/plain"},"key":"email","value":""}],"variable":[]}},"response":[],"_postman_id":"cdf9276e-13a4-4e8b-90eb-aa3815f538e0"}],"id":"8f2e7649-4a6d-4e18-b909-6fdc195d556b","_postman_id":"8f2e7649-4a6d-4e18-b909-6fdc195d556b","description":""},{"name":"Self Custodial Authentication","item":[{"name":"Request EVM challenge for self-custodial authentication","id":"89cde1fd-e2cf-43df-bcae-13de5a90b8eb","request":{"method":"POST","header":[{"key":"x-api-key","value":""}],"body":{"mode":"raw","raw":"{\n    \"eth_address\": \"0xD827815CCcF79198F2E719e81f63D731B174F75B\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/auth/evm/challenge","description":"<p>Requests EVM challenge for self-custodial authentication</p>\n<p><strong>Required properties</strong> </p>\n<ul>\n<li><strong><code>eth_address</code></strong> | <code>string</code> - The EVM compatible wallet address</li>\n</ul>\n","urlObject":{"path":["v2","auth","evm","challenge"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[]}},"response":[],"_postman_id":"89cde1fd-e2cf-43df-bcae-13de5a90b8eb"},{"name":"Verifies a signed message and authenticates user","id":"c3080233-bf5f-4c6e-b6e5-8fff78625a24","request":{"method":"POST","header":[{"key":"x-api-key","value":""}],"body":{"mode":"raw","raw":"{\n    \"eth_address\": \"0xAf98120cD086E09ED9a28faadC3AfD8d0De5135C\",\n    \"signature\": \"0xe3ceb4a7f10a4c0f3f4b4a914d26dc3e429069a9551ac757b71446fd851d9c0d39592ef706113d0ab14c5d808c0a1ff8b0c2e4d63d424bba61c7aa3f66a974ea1c\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/auth/evm/authorize","description":"<p>Verifies the signed message challenge and authenticates the user</p>\n<p><strong>Full example to authenticate user with EVM wallet</strong></p>\n<p><strong>Required properties</strong> </p>\n<ul>\n<li><strong><code>eth_address</code></strong> | <code>string</code> - The EVM compatible wallet address</li>\n<li><strong><code>signature</code></strong> | <code>string</code> - The signature generated by the user</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-js\">/* Imports */\nimport { ethers } from \"ethers\";\n/* 1. Create API Client */\nexport const mirrorworld = axios.create({\n  baseURL: \"https://api.mirrorworld.fun/v2\",\n  headers: {\n    \"x-api-key\": \"YOUR_API_KEY\"\n    \"Content-Type\": \"application/json\",\n  },\n});\n/* 2. Create signer wallet object that will sign. */\nconst wallet = ethers.Wallet.createRandom();\n/* 3. Request message challenge */\nconst { data: message } = await mirrorworld.post(\"/evm/challenge\", {\n  eth_address: wallet.address,\n});\n/* 4. Sign the message */\nconst signature = await wallet.signMessage(message.data);\nconst { data: result } = await mirrorworld.post(\"/evm/authorize\", {\n  eth_address: wallet.address,\n  signature,\n});\nconsole.log(result) // Prints user object and authentication tokens\n</code></pre>\n","urlObject":{"path":["v2","auth","evm","authorize"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[]}},"response":[],"_postman_id":"c3080233-bf5f-4c6e-b6e5-8fff78625a24"},{"name":"Logs in a user with solana signature verification","id":"23cee1a6-84c4-4fa8-9424-ed2a2d7f0e8f","request":{"method":"POST","header":[{"key":"x-api-key","value":""}],"body":{"mode":"raw","raw":"{\n    \"sol_address\": \"example\",\n    \"sol_address_encoded\": \"example\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/auth/solana/challenge","description":"<p>Requests Solana Wallet challenge for self-custodial authentication</p>\n<p><strong>Required properties</strong> </p>\n<ul>\n<li><strong><code>sol_address</code></strong> | <code>string</code> - The Solana wallet address</li>\n</ul>\n","urlObject":{"path":["v2","auth","solana","challenge"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[]}},"response":[],"_postman_id":"23cee1a6-84c4-4fa8-9424-ed2a2d7f0e8f"},{"name":"Logs in a user with solana OAuth","id":"12fa58cc-114a-4ea0-b150-e8e1441d14f9","request":{"method":"POST","header":[{"key":"x-api-key","value":""}],"body":{"mode":"raw","raw":"{\n    \"sol_address\": \"example\",\n    \"signature\": \"example\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/auth/solana/authorize","description":"<p>Verifies the signed message challenge and authenticates the user with Solana Wallet</p>\n<p><strong>Required properties</strong> </p>\n<ul>\n<li><strong><code>sol_address</code></strong> | <code>string</code> - The signer's public key/wallet address</li>\n<li><strong><code>sol_address_encoded</code></strong> | <code>string</code> - The text-encoded Solana wallet address encoded to base64</li>\n</ul>\n<p><strong>Full example to authenticate user with Solana wallet</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-js\">/* Imports */\nimport { encodeBase64 } from \"tweetnacl-util\";\nimport { Keypair } from \"@solana/web3.js\"\nimport { Wallet } from \"@project-serum/anchor\";\n/* 1. Create API Client */\nexport const mirrorworld = axios.create({\n  baseURL: \"https://api.mirrorworld.fun/v2\",\n  headers: {\n    \"x-api-key\": \"YOUR_API_KEY\"\n    \"Content-Type\": \"application/json\",\n  },\n});\n/* 2. Create signer wallet object that will sign. */\n/*    This could come from wallet extension or keypair generation. */\n/*    For this example, we shall generate the keypair. */\nconst wallet = new Wallet(Keypair.generate())\nconst encodedWalletAddress = encodeBase64(wallet.publicKey.toBytes());\n/* 3. Request message challenge */\nconst { data: message } = await mirrorworld.post(\"/solana/challenge\", {\n  sol_address: payload.sol_address,\n});\n/* 4. Sign the message and encode signature */\nconst encodedMessage = new TextEncoder().encode(message.data);\nconst result = await wallet.signMessage(encodedMessage);\nconst encodedSignature = encodeBase64(result.signature);\n/* 5. Finally, authorize signature */\nconst { data: result } = await mirrorworld.post(\"/solana/authorize\", {\n  sol_address_encoded: encodedWalletAddress,\n  sol_address: message.publicKey.toBase58(),\n  signature: encodedSignature,\n});\nconsole.log(result) // Prints user object and authentication tokens\n</code></pre>\n","urlObject":{"path":["v2","auth","solana","authorize"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[]}},"response":[],"_postman_id":"12fa58cc-114a-4ea0-b150-e8e1441d14f9"},{"name":"Logs in a user with sui signature verification","id":"d3d35273-2583-4ce5-94f2-b3de1be03f59","request":{"method":"POST","header":[{"key":"x-api-key","value":""}],"body":{"mode":"raw","raw":"{\n    \"sui_address\": \"0xf6758fe93f5a95e2de65579730016e6b7230befe2ba2816506d65cd00a87d78c\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/auth/sui/challenge","description":"<p>Logs in a user with sui signature verification</p>\n","urlObject":{"path":["v2","auth","sui","challenge"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[]}},"response":[],"_postman_id":"d3d35273-2583-4ce5-94f2-b3de1be03f59"},{"name":"Logs in a user with sui OAuth","id":"7f49563c-79c6-41b0-8eb9-943a67287b81","request":{"method":"POST","header":[{"key":"x-api-key","value":""}],"body":{"mode":"raw","raw":"{\n    \"sui_address\": \"example\",\n    \"signature\": \"example\",\n    \"sui_address_encoded\": \"example\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/auth/sui/authorize","description":"<p>Logs in a user with sui OAuth</p>\n","urlObject":{"path":["v2","auth","sui","authorize"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[]}},"response":[],"_postman_id":"7f49563c-79c6-41b0-8eb9-943a67287b81"}],"id":"ec1736f9-585f-4ecd-a121-3e1fcc3cbfd3","_postman_id":"ec1736f9-585f-4ecd-a121-3e1fcc3cbfd3","description":""},{"name":"Action Authorization","item":[{"name":"Begin a transaction approval request.","id":"e4dc0d3c-7b1d-4541-a257-6a121807bae4","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"transfer_sol\",\n    \"message\": \"Transfer 5 sol from x to y\",\n    \"value\": 5,\n    \"params\": {\n        \"from\": \"X\",\n        \"to\": \"Y\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/auth/actions/request","description":"<p>Begin a transaction approval request.</p>\n<p><strong>Required properties</strong> </p>\n<ul>\n<li><strong><code>type</code></strong> | <code>ActionType</code> - The type of action whose approval is being requested. One of <code>mint_nft</code> | <code>transfer_spl_token</code> | <code>transfer_sol</code> | <code>create_collection</code> | <code>create_sub_collection</code> | <code>list_nft</code> | <code>buy_nft</code> | <code>cancel_listing</code> | <code>update_listing</code> | <code>transfer_nft</code> | <code>interaction</code> | <code>create_marketplace</code> | <code>update_marketplace</code> | <code>transfer_bnb</code> | <code>transfer_matic</code> | <code>transfer_eth</code> | <code>transfer_erc20_token</code> | <code>sign_transaction</code> | <code>personal_sign</code> | <code>sign_typed_data</code> | <code>sign_typed_data_with_version</code></li>\n</ul>\n<p><strong>Optional properties</strong> </p>\n<ul>\n<li><strong><code>message</code></strong> | <code>string</code> - A message to display to the user's wallet</li>\n<li><strong><code>value</code></strong> | <code>string</code> - The value in tokens being transacted. It is important that this matches what the user eventually approves. If there is a mismatch, when consuming the approval token, the transaction will fail.</li>\n<li><strong><code>params</code></strong> | <code>string</code> - Any arbitrary JSON object you would like to give the user. This can contain any arbitrary parameters</li>\n</ul>\n","urlObject":{"path":["v2","auth","actions","request"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[]}},"response":[{"id":"0758995f-8f49-47ac-9376-8bae0f795ac2","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"type\": \"transfer_sol\",\n    \"message\": \"Transfer 5 sol from x to y\",\n    \"value\": 5,\n    \"params\": {\n        \"from\": \"X\",\n        \"to\": \"Y\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/auth/actions/request","description":"Begin a transaction approval request.\n\n**Required properties** \n- **`type`** | `ActionType` - The type of action whose approval is being requested. One of `mint_nft` | `transfer_spl_token` | `transfer_sol` | `create_collection` | `create_sub_collection` | `list_nft` | `buy_nft` | `cancel_listing` | `update_listing` | `transfer_nft` | `interaction` | `create_marketplace` | `update_marketplace` | `transfer_bnb` | `transfer_matic` | `transfer_eth` | `transfer_erc20_token` | `sign_transaction` | `personal_sign` | `sign_typed_data` | `sign_typed_data_with_version`\n\n**Optional properties** \n- **`message`** | `string` - A message to display to the user's wallet\n- **`value`** | `string` - The value in tokens being transacted. It is important that this matches what the user eventually approves. If there is a mismatch, when consuming the approval token, the transaction will fail.\n- **`params`** | `string` - Any arbitrary JSON object you would like to give the user. This can contain any arbitrary parameters\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"id\": 2,\n        \"uuid\": \"Dhe5Arog9Rm4kfwlQEC6XVXaMiz5kNBBsQqs\",\n        \"client_id\": \"Dhe5Arog9Rm4kfwlQEC6XVXaMiz5kNBBsQqs.c2FOtbG.mirrorworld.fun\",\n        \"user_id\": 6,\n        \"status\": \"verified\",\n        \"type\": \"mint_nft\",\n        \"signature\": \"3yNDq4sARQDw2fjazvBRchroA9KUGKCrpjQAtEaJJPPnPRpGjcB6YRWqSzz5rUw3uFku8Xt45ZFetPiJPhrQBuPV\",\n        \"message\": \"Approve List nft action from Project X\",\n        \"value\": 2,\n        \"params\": {\n            \"from\": \"X\",\n            \"to\": \"Y\"\n        },\n        \"origin\": \"www.dapp.xyz\",\n        \"device\": {\n            \"os\": \"Mac OS\",\n            \"bot\": false,\n            \"client\": \"adipisicing\",\n            \"device\": \"anim enim ullamco\"\n        },\n        \"started_at\": \"2013-05-24\",\n        \"verified_at\": \"1981-12-06\",\n        \"cancelled_at\": \"1990-08-19\",\n        \"completed_at\": \"1950-09-16\",\n        \"createdAt\": \"1955-06-11\",\n        \"updatedAt\": \"1962-12-10\"\n    }\n}"}],"_postman_id":"e4dc0d3c-7b1d-4541-a257-6a121807bae4"}],"id":"2ca50825-ed6a-44af-83f7-18814dd2445d","_postman_id":"2ca50825-ed6a-44af-83f7-18814dd2445d","description":""}],"id":"a4b6dd91-2be7-4433-ae0d-34e23cae38c9","description":"<p>The Authentication service is responsible for the following APIs:</p>\n<h3 id=\"1-user--developer-authentication\">1. User &amp; Developer Authentication</h3>\n<ol>\n<li>Social Authentication</li>\n<li>Email &amp; Password Authentication</li>\n<li>Passwordless/ Magiclink Authentication (Coming Soon)</li>\n<li>Refresh Auth Token</li>\n<li>Check Authenticated User Info</li>\n<li>Search User By Email</li>\n<li>Change User Email</li>\n</ol>\n<h3 id=\"2-project-authentication\">2. Project Authentication</h3>\n<ol>\n<li>Project Login</li>\n</ol>\n<h3 id=\"3-self-custodial-authentication\">3. Self-custodial Authentication</h3>\n<ol>\n<li>Solana Authentication (Phantom, Glow Wallet, Backpack Wallet, Solflare, ed25519 Key-Pair Wallet, e.t.c.)</li>\n<li>EVM Authentication (Metamask, e.t.c.)</li>\n<li>Sui Authentication (Sui Wallet, e.t.c.)</li>\n</ol>\n<h3 id=\"4-account-recovery\">4. Account Recovery</h3>\n<ol>\n<li>Reset Password</li>\n</ol>\n<h3 id=\"5-action-approval\">5. Action Approval</h3>\n<ol>\n<li>Request Action Approval</li>\n<li>Query User Approvals</li>\n<li>Approve User Action</li>\n</ol>\n<h3 id=\"6-secret-access-key-management-developers-only\">6. Secret Access Key Management (Developers only)</h3>\n<ol>\n<li>Generate Secret Access Key</li>\n<li>List Secret Access Keys</li>\n<li>Delete Secret Access Key</li>\n</ol>\n","_postman_id":"a4b6dd91-2be7-4433-ae0d-34e23cae38c9"},{"name":"Metadata","item":[{"name":"Collections","item":[{"name":"Get collections basic info","id":"cdd8e82b-be66-495c-bb34-50de9d3fa13f","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collections\": [\n        \"BXqCckKEidhJUpYrg4u2ocdiDKwJY3WujHvVDPTMf6nL\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/metadata/collections","description":"<p><strong>Get collection basis infos, contains collection name, address, owner, type and collection orders info.</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>collections</strong> | <code>string[]</code>  The list of collection address. it should not be empty.</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","metadata","collections"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"10d168c7-08a9-46b4-8318-96a5a75fa53a","type":"any","value":"solana","key":"chain"},{"id":"c2f727f3-59e5-4929-ac10-a8743f54abf3","type":"any","value":"devnet","key":"network"}]}},"response":[{"id":"fd41132e-024e-4636-a263-3f9436143aa9","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collections\": [\n        \"BXqCckKEidhJUpYrg4u2ocdiDKwJY3WujHvVDPTMf6nL\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/metadata/collections","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","metadata","collections"],"variable":[{"key":"chain","value":"solana"},{"key":"network","value":"devnet"}]},"description":"**Get collection basis infos, contains collection name, address, owner, type and collection orders info.**\n\n*Required parameters:*\n- **collections** | `string[]`  The list of collection address. it should not be empty.\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"success\",\n    \"data\": [\n        {\n            \"collection\": \"qkuKJWMi14rdYLPBghfBRDpJASdbcLU6xZH3cpUZfng\",\n            \"collection_name\": \"mirror xx\",\n            \"collection_type\": \"NFT\",\n            \"collection_image\": \"example collection image\",\n            \"collection_owner\": \"the owner of this collection \",\n            \"collection_orders\": [\n                {\n                    \"order_field\": \"price\",\n                    \"order_desc\": \"Price: Low to High\",\n                    \"desc\": true\n                }\n            ]\n        }\n    ]\n}"},{"id":"f3793ca3-3b0d-43ac-b9c4-67fffc11fa22","name":"Server Params Error","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collections\": [\n        \"BXqCckKEidhJUpYrg4u2ocdiDKwJY3WujHvVDPTMf6nL\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/metadata/collections","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","metadata","collections"],"variable":[{"key":"chain","value":"solana"},{"key":"network","value":"devnet"}]},"description":"**Get collection basis infos, contains collection name, address, owner, type and collection orders info.**\n\n*Required parameters:*\n- **collections** | `string[]`  The list of collection address. it should not be empty.\n"},"status":"Server Params Error","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 2000001,\n    \"message\": \"params error\",\n    \"data\": {},\n    \"status\": \"failed\"\n}"},{"id":"781b040a-c240-44dc-89be-02a2d1767f3e","name":"Server Collection Not Exist Error","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collections\": [\n        \"BXqCckKEidhJUpYrg4u2ocdiDKwJY3WujHvVDPTMf6nL\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/metadata/collections","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","metadata","collections"],"variable":[{"key":"chain","value":"solana"},{"key":"network","value":"devnet"}]},"description":"**Get collection basis infos, contains collection name, address, owner, type and collection orders info.**\n\n*Required parameters:*\n- **collections** | `string[]`  The list of collection address. it should not be empty.\n"},"status":"Server Collection Not Exist Error","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 2000002,\n    \"message\": \"collection not exist\",\n    \"data\": {},\n    \"status\": \"failed\"\n}"}],"_postman_id":"cdd8e82b-be66-495c-bb34-50de9d3fa13f"},{"name":"Get collections filter info","id":"c2cc96b5-fc31-43f8-bcb8-2e3d3965b61b","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/:chain/:network/metadata/collection/filter_info?collection=qkuKJWMi14rdYLPBghfBRDpJASdbcLU6xZH3cpUZfng","description":"<p><strong>Get collection filter info</strong></p>\n","urlObject":{"path":["v2",":chain",":network","metadata","collection","filter_info"],"host":["https://api.mirrorworld.fun"],"query":[{"key":"collection","value":"qkuKJWMi14rdYLPBghfBRDpJASdbcLU6xZH3cpUZfng"}],"variable":[{"id":"7ef600ae-2e1a-4ba7-ae2e-a8114e80cbca","type":"any","value":"solana","key":"chain"},{"id":"57ab1b34-fc5e-4c2e-88ca-3343a72b768e","type":"any","value":"devnet","key":"network"}]}},"response":[{"id":"d06282bc-e329-42ab-80ea-a9f1ed174254","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/metadata/collection/filter_info?collection=qkuKJWMi14rdYLPBghfBRDpJASdbcLU6xZH3cpUZfng","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","metadata","collection","filter_info"],"query":[{"key":"collection","value":"qkuKJWMi14rdYLPBghfBRDpJASdbcLU6xZH3cpUZfng"}],"variable":[{"key":"chain","value":"solana"},{"key":"network","value":"devnet"}]},"description":"**Get collection filter info**\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"success\",\n    \"data\": {\n        \"collection\": \"qkuKJWMi14rdYLPBghfBRDpJASdbcLU6xZH3cpUZfng\",\n        \"filter_info\": [\n            {\n                \"filter_name\": \"Rarity\",\n                \"filter_type\": \"enum\",\n                \"filter_value\": [\n                    \"Common\",\n                    \"Rare\",\n                    \"Elite\",\n                    \"Ledengary\",\n                    \"Mythical\"\n                ]\n            },\n            {\n                \"filter_name\": \"Rarity\",\n                \"filter_type\": \"range\",\n                \"filter_value\": [\n                    1,\n                    10\n                ]\n            }\n        ]\n    }\n}"},{"id":"2ccd4520-1b91-4158-8a0d-643fafbb3fbb","name":"Server Params Error","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/metadata/collection/filter_info?collection=qkuKJWMi14rdYLPBghfBRDpJASdbcLU6xZH3cpUZfng","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","metadata","collection","filter_info"],"query":[{"key":"collection","value":"qkuKJWMi14rdYLPBghfBRDpJASdbcLU6xZH3cpUZfng"}],"variable":[{"key":"chain","value":"solana"},{"key":"network","value":"devnet"}]},"description":"**Get collection filter info**\n"},"status":"Server Params Error","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 2000001,\n    \"message\": \"params error\",\n    \"data\": {},\n    \"status\": \"failed\"\n}"},{"id":"83e8a181-21f6-498b-b60c-9cde31dc9a44","name":"Server Collection Not Exist Error","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/metadata/collection/filter_info?collection=qkuKJWMi14rdYLPBghfBRDpJASdbcLU6xZH3cpUZfng","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","metadata","collection","filter_info"],"query":[{"key":"collection","value":"qkuKJWMi14rdYLPBghfBRDpJASdbcLU6xZH3cpUZfng"}],"variable":[{"key":"chain","value":"solana"},{"key":"network","value":"devnet"}]},"description":"**Get collection filter info**\n"},"status":"Server Collection Not Exist Error","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 2000002,\n    \"message\": \"collection not exist\",\n    \"data\": {},\n    \"status\": \"failed\"\n}"}],"_postman_id":"c2cc96b5-fc31-43f8-bcb8-2e3d3965b61b"},{"name":"Get collections summary","id":"37de374a-8375-4af8-aefb-ada25aca78de","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collections\": [\n        \"BXqCckKEidhJUpYrg4u2ocdiDKwJY3WujHvVDPTMf6nL\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/metadata/collection/summary","description":"<p><strong>Get the collection summary info</strong>, </p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>collections</strong> | <code>string[]</code> The list of collection address. it should not be empty.</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","metadata","collection","summary"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"1d652654-2b8c-445b-9fbc-4f21c90da63c","type":"any","value":"solana","key":"chain"},{"id":"16cbbd27-2949-48b7-a878-9fcb4784e083","type":"any","value":"devnet","key":"network"}]}},"response":[{"id":"1c20604d-f07c-4eac-b4dc-08fc5ecf8a83","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collections\": [\n        \"BXqCckKEidhJUpYrg4u2ocdiDKwJY3WujHvVDPTMf6nL\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/metadata/collection/summary","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","metadata","collection","summary"],"variable":[{"key":"chain","value":"solana"},{"key":"network","value":"devnet"}]},"description":"**Get the collection summary info**, \n\n*Required parameters:*\n- **collections** | `string[]` The list of collection address. it should not be empty.\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"success\",\n    \"data\": [\n        {\n            \"collection\": \"DUuMbpmH3oiREntViXfGZhrLMbVcYBwGeBa4Wn9X8QfM\",\n            \"collection_name\": \"example collection name\",\n            \"collection_owner\": \"\",\n            \"nft_amount\": 10,\n            \"listed_amount\": 2,\n            \"floor_price\": \"0.1\"\n        }\n    ]\n}"},{"id":"ff35671c-b8e2-4ac5-a8f7-94b3ed0c571a","name":"Server Params Error","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collections\": [\n        \"BXqCckKEidhJUpYrg4u2ocdiDKwJY3WujHvVDPTMf6nL\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/metadata/collection/summary","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","metadata","collection","summary"],"variable":[{"key":"chain","value":"solana"},{"key":"network","value":"devnet"}]},"description":"**Get the collection summary info**, \n\n*Required parameters:*\n- **collections** | `string[]` The list of collection address. it should not be empty.\n"},"status":"Server Params Error","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 2000001,\n    \"message\": \"params error\",\n    \"data\": {},\n    \"status\": \"failed\"\n}"},{"id":"3d85f0ac-d68b-455a-a07d-7a2dc108a7ec","name":"Server Collection Not Exist Error","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collections\": [\n        \"BXqCckKEidhJUpYrg4u2ocdiDKwJY3WujHvVDPTMf6nL\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/metadata/collection/summary","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","metadata","collection","summary"],"variable":[{"key":"chain","value":"solana"},{"key":"network","value":"devnet"}]},"description":"**Get the collection summary info**, \n\n*Required parameters:*\n- **collections** | `string[]` The list of collection address. it should not be empty.\n"},"status":"Server Collection Not Exist Error","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 2000002,\n    \"message\": \"collection not exist\",\n    \"data\": {},\n    \"status\": \"failed\"\n}"}],"_postman_id":"37de374a-8375-4af8-aefb-ada25aca78de"},{"name":"Register collection","id":"1f157ba2-9e15-4b67-a40f-8955846cddb6","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collection\": \"qkuKJWMi14rdYLPBghfBRDpJASdbcLU6xZH3cpUZfng\",\n    \"collection_name\": \"example collection\",\n    \"collection_type\": \"NFT\",\n    \"chain\": \"polygon\",\n    \"network\": \"numbai\",\n    \"collection_orders\": [\n        {\n            \"order_field\": \"price\",\n            \"order_desc\": \"Price: Low to High\",\n            \"desc\": true\n        }\n    ],\n    \"collection_filters\": [\n        {\n            \"filter_name\": \"Rarity\",\n            \"filter_type\": \"enum\",\n            \"filter_value\": [\n                \"Common\",\n                \"Rare\",\n                \"Elite\",\n                \"Ledengary\",\n                \"Mythical\"\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/metadata/collection/register","description":"<p><strong>Register the collection info to metadata server, then metadata server will index the collection data.</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>collection</strong> | <code>string</code> The address of the collection.</li>\n<li><strong>collection_name</strong> | <code>string</code> The name of the collection.</li>\n<li><strong>collection_type</strong> | <code>string</code> The collection type, can be empty.</li>\n</ul>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>collection_orders.order_field</strong> | <code>string</code> The order field.</li>\n<li><strong>collection_orders.order_desc</strong> | <code>string</code> The order description.</li>\n<li><strong>collection_orders.desc</strong> | <code>boolean</code> order by desc or asc.</li>\n<li><strong>collection_filters.filter_name</strong> | <code>string</code> The name of the filter item.</li>\n<li><strong>collection_filters.filter_type</strong> | <code>string</code> The type of the filter item, contains enum/range.</li>\n<li><strong>collection_filters.filter_value</strong> | <code>string\\integer</code> The value of the filter item, value can be string\\integer.</li>\n<li><strong>chain</strong> | <code>string</code> collection chain info, solana\\ethereum\\polygon\\sui\\bnb</li>\n<li><strong>network</strong> | <code>string</code> chain network</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","metadata","collection","register"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"11aebc2b-c606-450d-b232-4bcb89b37563","type":"any","value":"solana","key":"chain"},{"id":"640b7912-e5a4-446a-bc66-50a9b19a8ef1","type":"any","value":"devnet","key":"network"}]}},"response":[{"id":"f4377837-eaee-4127-9bba-7fadb9b19eb9","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collection\": \"qkuKJWMi14rdYLPBghfBRDpJASdbcLU6xZH3cpUZfng\",\n    \"collection_name\": \"example collection\",\n    \"collection_type\": \"NFT\",\n    \"chain\": \"polygon\",\n    \"network\": \"numbai\",\n    \"collection_orders\": [\n        {\n            \"order_field\": \"price\",\n            \"order_desc\": \"Price: Low to High\",\n            \"desc\": true\n        }\n    ],\n    \"collection_filters\": [\n        {\n            \"filter_name\": \"Rarity\",\n            \"filter_type\": \"enum\",\n            \"filter_value\": [\n                \"Common\",\n                \"Rare\",\n                \"Elite\",\n                \"Ledengary\",\n                \"Mythical\"\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/metadata/collection/register","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","metadata","collection","register"],"variable":[{"key":"chain","value":"solana"},{"key":"network","value":"devnet"}]},"description":"**Register the collection info to metadata server, then metadata server will index the collection data.**\n\n*Required parameters:*\n- **collection** | `string` The address of the collection.\n- **collection_name** | `string` The name of the collection.\n- **collection_type** | `string` The collection type, can be empty.\n\n*Optional parameters:*\n- **collection_orders.order_field** | `string` The order field.\n- **collection_orders.order_desc** | `string` The order description.\n- **collection_orders.desc** | `boolean` order by desc or asc.\n- **collection_filters.filter_name** | `string` The name of the filter item.\n- **collection_filters.filter_type** | `string` The type of the filter item, contains enum/range.\n- **collection_filters.filter_value** | `string\\integer` The value of the filter item, value can be string\\integer.\n- **chain** | `string` collection chain info, solana\\ethereum\\polygon\\sui\\bnb\n- **network** | `string` chain network\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"success\",\n    \"data\": \"unknown\"\n}"}],"_postman_id":"1f157ba2-9e15-4b67-a40f-8955846cddb6"}],"id":"6e25888e-51bf-4ceb-84bb-7ad2adaa5545","_postman_id":"6e25888e-51bf-4ceb-84bb-7ad2adaa5545","description":""},{"name":"Nft","item":[{"name":"Get nft info(only for solana)","id":"7105383b-6f43-4679-88ab-9482f4ba38c7","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/solana/:network/metadata/nft/:mint_address?auction_house=","description":"<p><strong>Get solana nft detail info by mint_address</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>mint_address</strong> | <code>string</code> The nft mint address</li>\n</ul>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>auction_house</strong> | <code>string</code> Query params. The auction house address.</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","metadata","nft",":mint_address"],"host":["https://api.mirrorworld.fun"],"query":[{"description":{"content":"<p>solana auction house address</p>\n","type":"text/plain"},"key":"auction_house","value":""}],"variable":[{"id":"4d5419a2-086b-4609-9d44-1dbf6c0c981f","type":"any","value":"devnet","key":"network"},{"id":"85418ff7-b7d9-417a-9239-01917284325f","description":{"content":"<p>nft mint address</p>\n","type":"text/plain"},"type":"any","value":"AGKiHPdzM6q9LkHw1exqSCmuiabNobz7nttLUELnVBEL","key":"mint_address"}]}},"response":[{"id":"207c56fd-7097-41d6-a078-2521da23be8e","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/metadata/nft/:mint_address?auction_house=","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","metadata","nft",":mint_address"],"query":[{"description":"solana auction house address","key":"auction_house","value":""}],"variable":[{"key":"network","value":"devnet"},{"key":"mint_address","value":"AGKiHPdzM6q9LkHw1exqSCmuiabNobz7nttLUELnVBEL","description":"nft mint address"}]},"description":"**Get solana nft detail info by mint_address**\n\n*Required parameters:*\n- **mint_address** | `string` The nft mint address\n\n*Optional parameters:*\n- **auction_house** | `string` Query params. The auction house address.\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"success\",\n    \"data\": {\n        \"collection\": \"BXqCckKEidhJUpYrg4u2ocdiDKwJY3WujHvVDPTMf6nL\",\n        \"name\": \"Mirror Jump #2\",\n        \"mint_address\": \"AGKiHPdzM6q9LkHw1exqSCmuiabNobz7nttLUELnVBEL\",\n        \"owner_address\": \"Bb7TC4ntncYh53Hbr8ducBdQ3NZpVVuTZNvhmA6RUHyV\",\n        \"image\": \"http://metadata-assets.mirrorworld.fun/mirror_jump/images/Common_Zombie.png\",\n        \"price\": \"0.1\",\n        \"listed\": false,\n        \"attributes\": [\n            {\n                \"trait_type\": \"rarity\",\n                \"value\": \"common\"\n            }\n        ],\n        \"off_chain_attributes\": [\n            {\n                \"trait_type\": \"color\",\n                \"value\": \"blue\"\n            }\n        ],\n        \"skill_attributes\": [\n            {\n                \"trait_type\": \"attack\",\n                \"value\": \"100\",\n                \"image\": \"https://metadata-assets.mirrorworld.fun/mirror_jump/images/Legendary_Astronaut.png\"\n            }\n        ],\n        \"mint_authority\": \"\",\n        \"update_authority\": \"\",\n        \"list_status\": [\n            {\n                \"marketplace_address\": \"0x6750A2FA00926758631C609CEC34F1D9840131b4\",\n                \"list_price\": \"1.1\",\n                \"list_time\": \"2023-03-16T13:50:54.317Z\",\n                \"list_count\": 1,\n                \"list_operator\": \"0xB2d333A02d10319430191374847C2CD414961cFe\"\n            }\n        ]\n    }\n}"},{"id":"45f1a3e4-372f-46e2-8c72-31037cb5dc00","name":"Server Params Error","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/metadata/nft/:mint_address?auction_house=","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","metadata","nft",":mint_address"],"query":[{"description":"solana auction house address","key":"auction_house","value":""}],"variable":[{"key":"network","value":"devnet"},{"key":"mint_address","value":"AGKiHPdzM6q9LkHw1exqSCmuiabNobz7nttLUELnVBEL","description":"nft mint address"}]},"description":"**Get solana nft detail info by mint_address**\n\n*Required parameters:*\n- **mint_address** | `string` The nft mint address\n\n*Optional parameters:*\n- **auction_house** | `string` Query params. The auction house address.\n"},"status":"Server Params Error","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 2000001,\n    \"message\": \"params error\",\n    \"data\": {},\n    \"status\": \"failed\"\n}"},{"id":"375e3aa6-34b4-41d4-ba20-2b85143e379a","name":"Server Nft Not Exist Error","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/metadata/nft/:mint_address?auction_house=","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","metadata","nft",":mint_address"],"query":[{"description":"solana auction house address","key":"auction_house","value":""}],"variable":[{"key":"network","value":"devnet"},{"key":"mint_address","value":"AGKiHPdzM6q9LkHw1exqSCmuiabNobz7nttLUELnVBEL","description":"nft mint address"}]},"description":"**Get solana nft detail info by mint_address**\n\n*Required parameters:*\n- **mint_address** | `string` The nft mint address\n\n*Optional parameters:*\n- **auction_house** | `string` Query params. The auction house address.\n"},"status":"Server Nft Not Exist Error","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 2000002,\n    \"message\": \"nft not exist\",\n    \"data\": {},\n    \"status\": \"failed\"\n}"}],"_postman_id":"7105383b-6f43-4679-88ab-9482f4ba38c7"},{"name":"Get nfts info(only for solana)","id":"4c4e5f7c-0f36-4753-8d6a-7da5f12a55b1","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collection\": \"BXqCckKEidhJUpYrg4u2ocdiDKwJY3WujHvVDPTMf6nL\",\n    \"page\": 1,\n    \"page_size\": 10,\n    \"order\": {\n        \"order_by\": \"price\",\n        \"desc\": true\n    },\n    \"sale\": 0,\n    \"filter\": [\n        {\n            \"filter_name\": \"color\",\n            \"filter_type\": \"enum\",\n            \"filter_value\": [\n                \"blue\",\n                \"red\"\n            ]\n        },\n        {\n            \"filter_name\": \"attack\",\n            \"filter_type\": \"range\",\n            \"filter_value\": [\n                1,\n                10\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/solana/:network/metadata/nfts","description":"<p><strong>Get solana nfts by collection order and filter items</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>collection</strong> | <code>string</code> The collection address.</li>\n<li><strong>sale</strong> | <code>integer</code> The sale status, 0: All, 1: For sale, 2: Not for sale.</li>\n<li><strong>page</strong> | <code>integer</code> The page number, page &gt; 0.</li>\n<li><strong>page_size</strong> | <code>integer</code> The page size, 0 &lt; page size &lt;= 50.</li>\n<li><strong>order</strong> | <code>array</code> The order items.</li>\n<li><strong>order.order_by</strong> | <code>string</code> The order filed.</li>\n<li><strong>order.desc</strong> | <code>boolean</code> The order, true: desc, false: asc.</li>\n</ul>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>auction_house</strong> | <code>string</code> The auction house address.</li>\n<li><strong>filter</strong> | <code>array</code> The filter items.</li>\n<li><strong>filter.filter_name</strong> | <code>string</code> The filter name.</li>\n<li><strong>filter.filter_type</strong> | <code>string</code> The filter type, enum/range.</li>\n<li><strong>filter.filter_value</strong> | <code>array</code> The filter value, filter_value can be integer\\string.</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","metadata","nfts"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"3df5b984-9b22-4755-8800-366370d24f8e","type":"any","value":"devnet","key":"network"}]}},"response":[{"id":"176b4840-a5db-4466-b551-fc2d30dca920","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collection\": \"BXqCckKEidhJUpYrg4u2ocdiDKwJY3WujHvVDPTMf6nL\",\n    \"page\": 1,\n    \"page_size\": 10,\n    \"order\": {\n        \"order_by\": \"price\",\n        \"desc\": true\n    },\n    \"sale\": 0,\n    \"filter\": [\n        {\n            \"filter_name\": \"color\",\n            \"filter_type\": \"enum\",\n            \"filter_value\": [\n                \"blue\",\n                \"red\"\n            ]\n        },\n        {\n            \"filter_name\": \"attack\",\n            \"filter_type\": \"range\",\n            \"filter_value\": [\n                1,\n                10\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/metadata/nfts","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","metadata","nfts"],"variable":[{"key":"network","value":"devnet"}]},"description":"**Get solana nfts by collection order and filter items**\n\n*Required parameters:*\n- **collection** | `string` The collection address.\n- **sale** | `integer` The sale status, 0: All, 1: For sale, 2: Not for sale.\n- **page** | `integer` The page number, page > 0.\n- **page_size** | `integer` The page size, 0 < page size <= 50.\n- **order** | `array` The order items.\n- **order.order_by** | `string` The order filed.\n- **order.desc** | `boolean` The order, true: desc, false: asc.\n\n*Optional parameters:*\n- **auction_house** | `string` The auction house address.\n- **filter** | `array` The filter items.\n- **filter.filter_name** | `string` The filter name.\n- **filter.filter_type** | `string` The filter type, enum/range.\n- **filter.filter_value** | `array` The filter value, filter_value can be integer\\string. \n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"success\",\n    \"data\": {\n        \"total_page\": 1,\n        \"page_size\": 10,\n        \"nfts\": [\n            {\n                \"name\": \"example nft 1\",\n                \"image\": \"http://metadata-assets.mirrorworld.fun/mirror_jump/images/Common_Zombie.png\",\n                \"price\": \"\",\n                \"mint_address\": \"AGKiHPdzM6q9LkHw1exqSCmuiabNobz7nttLUELnVBEL\",\n                \"owner_address\": \"Bb7TC4ntncYh53Hbr8ducBdQ3NZpVVuTZNvhmA6RUHyV\",\n                \"listed\": false\n            }\n        ]\n    }\n}"},{"id":"b7d1ed09-ce55-471c-8747-69ba7b211a4a","name":"Server Params Error","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collection\": \"BXqCckKEidhJUpYrg4u2ocdiDKwJY3WujHvVDPTMf6nL\",\n    \"page\": 1,\n    \"page_size\": 10,\n    \"order\": {\n        \"order_by\": \"price\",\n        \"desc\": true\n    },\n    \"sale\": 0,\n    \"filter\": [\n        {\n            \"filter_name\": \"color\",\n            \"filter_type\": \"enum\",\n            \"filter_value\": [\n                \"blue\",\n                \"red\"\n            ]\n        },\n        {\n            \"filter_name\": \"attack\",\n            \"filter_type\": \"range\",\n            \"filter_value\": [\n                1,\n                10\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/metadata/nfts","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","metadata","nfts"],"variable":[{"key":"network","value":"devnet"}]},"description":"**Get solana nfts by collection order and filter items**\n\n*Required parameters:*\n- **collection** | `string` The collection address.\n- **sale** | `integer` The sale status, 0: All, 1: For sale, 2: Not for sale.\n- **page** | `integer` The page number, page > 0.\n- **page_size** | `integer` The page size, 0 < page size <= 50.\n- **order** | `array` The order items.\n- **order.order_by** | `string` The order filed.\n- **order.desc** | `boolean` The order, true: desc, false: asc.\n\n*Optional parameters:*\n- **auction_house** | `string` The auction house address.\n- **filter** | `array` The filter items.\n- **filter.filter_name** | `string` The filter name.\n- **filter.filter_type** | `string` The filter type, enum/range.\n- **filter.filter_value** | `array` The filter value, filter_value can be integer\\string. \n"},"status":"Server Params Error","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 2000001,\n    \"message\": \"params error\",\n    \"data\": {},\n    \"status\": \"failed\"\n}"}],"_postman_id":"4c4e5f7c-0f36-4753-8d6a-7da5f12a55b1"},{"name":"Get nft events(only for solana)","id":"9bb41fe3-2aeb-44de-af46-6b118f9806fe","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"auction_house\": \"\",\n    \"mint_address\": \"DNuacjMtuvoWYoD5PRkrnvT6qg1GmoNut3eTK34ugkB3\",\n    \"page\": 1,\n    \"page_size\": 10\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/solana/:network/metadata/nft/events","description":"<p><strong>Get solana nft events by nft mint_address</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>mint_address</strong> | <code>string</code> The solana nft mint address.</li>\n<li><strong>page</strong> | <code>integer</code> The page number, page &gt; 0.</li>\n<li><strong>page_size</strong> | <code>integer</code> The page size, 0 &lt; page_size &lt; 50.</li>\n</ul>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>auction_house</strong> | <code>string</code> The auction house address</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","metadata","nft","events"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"ec7efefe-3646-4fe6-b00f-ce27b4a075a9","type":"any","value":"devnet","key":"network"}]}},"response":[{"id":"dec954dd-6a6f-4354-94e8-43b859a07d32","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"auction_house\": \"\",\n    \"mint_address\": \"DNuacjMtuvoWYoD5PRkrnvT6qg1GmoNut3eTK34ugkB3\",\n    \"page\": 1,\n    \"page_size\": 10\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/metadata/nft/events","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","metadata","nft","events"],"variable":[{"key":"network","value":"devnet"}]},"description":"**Get solana nft events by nft mint_address**\n\n*Required parameters:*\n- **mint_address** | `string` The solana nft mint address.\n- **page** | `integer` The page number, page > 0.\n- **page_size** | `integer` The page size, 0 < page_size < 50.\n\n*Optional parameters:*\n- **auction_house** | `string` The auction house address\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"success\",\n    \"data\": {\n        \"total_page\": 1,\n        \"page_size\": 10,\n        \"events\": [\n            {\n                \"mint_address\": \"DNuacjMtuvoWYoD5PRkrnvT6qg1GmoNut3eTK34ugkB3\",\n                \"event_type\": \"cancel\",\n                \"price\": \"\",\n                \"from_address\": \"DJhofV6xSb9EpGn23rxCJpUVoRbH9Ys2cCxwNTKGLNwx\",\n                \"to_address\": \"\",\n                \"event_date\": \"2022-10-07T11:43:56Z\",\n                \"date_tag\": \"20 days ago\",\n                \"signature\": \"2XwmdzYivkD8gh7LTTddNtWHVxTT1Byr4XHbArbqUoVsqshJd7zrn14eq4QJQmmSP3o4qcaLDvht3rti2NCCraFy\"\n            }\n        ]\n    }\n}"},{"id":"a6e48a74-e8a9-4715-bbe7-19e6410979d0","name":"Server Params Error","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"auction_house\": \"\",\n    \"mint_address\": \"DNuacjMtuvoWYoD5PRkrnvT6qg1GmoNut3eTK34ugkB3\",\n    \"page\": 1,\n    \"page_size\": 10\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/metadata/nft/events","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","metadata","nft","events"],"variable":[{"key":"network","value":"devnet"}]},"description":"**Get solana nft events by nft mint_address**\n\n*Required parameters:*\n- **mint_address** | `string` The solana nft mint address.\n- **page** | `integer` The page number, page > 0.\n- **page_size** | `integer` The page size, 0 < page_size < 50.\n\n*Optional parameters:*\n- **auction_house** | `string` The auction house address\n"},"status":"Server Params Error","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 2000001,\n    \"message\": \"params error\",\n    \"data\": {},\n    \"status\": \"failed\"\n}"}],"_postman_id":"9bb41fe3-2aeb-44de-af46-6b118f9806fe"},{"name":"Search nft(only for solana)","id":"3f0245e0-4765-487e-ab6b-e0cbffb48b6b","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collections\": [\n        \"BXqCckKEidhJUpYrg4u2ocdiDKwJY3WujHvVDPTMf6nL\"\n    ],\n    \"search\": \"Jump\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/solana/:network/metadata/nft/search","description":"<p><strong>Search solana nft by nft name. it's fuzzy search, if the search field is \"a\", all nfts whoses name contain \"a\" will be retrieved</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>collections</strong> | <code>array</code> The collection address.</li>\n<li><strong>search</strong> | <code>string</code> The search filed</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","metadata","nft","search"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"c5ed6e6c-7063-4426-a21a-1e0b72257f58","type":"any","value":"devnet","key":"network"}]}},"response":[{"id":"49e12409-30ae-4033-baf3-c3b4879b5dfd","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collections\": [\n        \"BXqCckKEidhJUpYrg4u2ocdiDKwJY3WujHvVDPTMf6nL\"\n    ],\n    \"search\": \"Jump\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/metadata/nft/search","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","metadata","nft","search"],"variable":[{"key":"network","value":"devnet"}]},"description":"**Search solana nft by nft name. it's fuzzy search, if the search field is \"a\", all nfts whoses name contain \"a\" will be retrieved**\n\n*Required parameters:*\n- **collections** | `array` The collection address.\n- **search** | `string` The search filed\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"success\",\n    \"data\": [\n        {\n            \"name\": \"example nft 2\",\n            \"image\": \"http://metadata-assets.mirrorworld.fun/mirror_jump/images/Common_Zombie.png\",\n            \"collection\": \"BXqCckKEidhJUpYrg4u2ocdiDKwJY3WujHvVDPTMf6nL\",\n            \"mint_address\": \"AGKiHPdzM6q9LkHw1exqSCmuiabNobz7nttLUELnVBEL\",\n            \"owner_address\": \"Bb7TC4ntncYh53Hbr8ducBdQ3NZpVVuTZNvhmA6RUHyV\",\n            \"listed\": true\n        }\n    ]\n}"},{"id":"d4d61b1c-c048-446b-a913-3aeda2b419db","name":"Server Params Error","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collections\": [\n        \"BXqCckKEidhJUpYrg4u2ocdiDKwJY3WujHvVDPTMf6nL\"\n    ],\n    \"search\": \"Jump\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/metadata/nft/search","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","metadata","nft","search"],"variable":[{"key":"network","value":"devnet"}]},"description":"**Search solana nft by nft name. it's fuzzy search, if the search field is \"a\", all nfts whoses name contain \"a\" will be retrieved**\n\n*Required parameters:*\n- **collections** | `array` The collection address.\n- **search** | `string` The search filed\n"},"status":"Server Params Error","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 2000001,\n    \"message\": \"params error\",\n    \"data\": {},\n    \"status\": \"failed\"\n}"}],"_postman_id":"3f0245e0-4765-487e-ab6b-e0cbffb48b6b"},{"name":"Recommend search nft(only for solana)","id":"70c4736f-d414-4ef9-96cf-eaed8b6cdec7","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collections\": [\n        \"BXqCckKEidhJUpYrg4u2ocdiDKwJY3WujHvVDPTMf6nL\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/solana/:network/metadata/nft/search/recommend","description":"<p><strong>Solana recommend nft for search. this endpoint will recommend some nfts</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>collections</strong> | <code>string[]</code> The list of collection address.</li>\n</ul>\n","urlObject":{"path":["v2","solana",":network","metadata","nft","search","recommend"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"e6995d5b-5f9b-42aa-86ff-5babd649e9d2","type":"any","value":"devnet","key":"network"}]}},"response":[{"id":"ecc2832d-9ca5-4e99-a8d7-0f5d38d9211d","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collections\": [\n        \"BXqCckKEidhJUpYrg4u2ocdiDKwJY3WujHvVDPTMf6nL\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/solana/:network/metadata/nft/search/recommend","host":["https://api.mirrorworld.fun"],"path":["v2","solana",":network","metadata","nft","search","recommend"],"variable":[{"key":"network","value":"devnet"}]},"description":"**Solana recommend nft for search. this endpoint will recommend some nfts**\n\n*Required parameters:*\n- **collections** | `string[]` The list of collection address.\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"success\",\n    \"data\": [\n        {\n            \"name\": \"example nft 2\",\n            \"image\": \"http://metadata-assets.mirrorworld.fun/mirror_jump/images/Common_Zombie.png\",\n            \"collection\": \"BXqCckKEidhJUpYrg4u2ocdiDKwJY3WujHvVDPTMf6nL\",\n            \"mint_address\": \"AGKiHPdzM6q9LkHw1exqSCmuiabNobz7nttLUELnVBEL\",\n            \"owner_address\": \"Bb7TC4ntncYh53Hbr8ducBdQ3NZpVVuTZNvhmA6RUHyV\",\n            \"listed\": true\n        }\n    ]\n}"}],"_postman_id":"70c4736f-d414-4ef9-96cf-eaed8b6cdec7"},{"name":"Get nft info","id":"bd54ebea-938b-4ac8-b1e9-227d3e760a14","request":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"url":"https://api.mirrorworld.fun/v2/:chain/:network/metadata/nft/:contract/:token_id?marketplace_address=0x0","description":"<p>｜ <strong>Get evm nft info by contract address and tokenid</strong>\n<em>Required parameters:</em> - <strong>contract</strong> | <code>string</code> The contract address. - <strong>token_id</strong> | <code>integer</code> The token id.\n<em>Optional parameters:</em> - <strong>marketplace_address</strong> | <code>string</code> The marketplace address.</p>\n","urlObject":{"path":["v2",":chain",":network","metadata","nft",":contract",":token_id"],"host":["https://api.mirrorworld.fun"],"query":[{"description":{"content":"<p>evm marketplace address</p>\n","type":"text/plain"},"key":"marketplace_address","value":"0x0"}],"variable":[{"id":"2f4bf004-f320-4aa7-a686-7194eed13e03","type":"any","value":"ethereum","key":"chain"},{"id":"d02019a7-9752-4cc4-b4d6-15b46c5d19bb","type":"any","value":"goerli","key":"network"},{"id":"b17d8f9a-fb2d-468c-9b93-552874119331","description":{"content":"<p>contract address</p>\n","type":"text/plain"},"type":"any","value":"0x011135F655e0916345C5188aA14fD4E2FEf1845E","key":"contract"},{"id":"0414de19-00e1-4d93-ba92-07a4aa898c21","description":{"content":"<p>nft token id</p>\n","type":"text/plain"},"type":"any","value":"1","key":"token_id"}]}},"response":[{"id":"afe03ba0-1d51-408e-98d4-ffb70057c657","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/metadata/nft/:contract/:token_id?marketplace_address=0x0","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","metadata","nft",":contract",":token_id"],"query":[{"description":"evm marketplace address","key":"marketplace_address","value":"0x0"}],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"},{"key":"contract","value":"0x011135F655e0916345C5188aA14fD4E2FEf1845E","description":"contract address"},{"key":"token_id","value":"1","description":"nft token id"}]},"description":"｜ **Get evm nft info by contract address and tokenid**\n*Required parameters:* - **contract** | `string` The contract address. - **token_id** | `integer` The token id.\n*Optional parameters:* - **marketplace_address** | `string` The marketplace address."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"success\",\n    \"data\": {\n        \"contract\": \"0x011135F655e0916345C5188aA14fD4E2FEf1845E\",\n        \"token_id\": 1,\n        \"name\": \"example nft 1\",\n        \"owner_address\": \"owner address\",\n        \"image\": \"https://metadata-assets.mirrorworld.fun/mirror_jump/images/Legendary_Astronaut.png\",\n        \"price\": \"0.1\",\n        \"listed\": false,\n        \"attributes\": [\n            {\n                \"trait_type\": \"rarity\",\n                \"value\": \"common\"\n            }\n        ],\n        \"off_chain_attribute\": [\n            {\n                \"trait_type\": \"color\",\n                \"value\": \"blue\"\n            }\n        ],\n        \"skill_attributes\": [\n            {\n                \"trait_type\": \"attack\",\n                \"value\": \"100\",\n                \"image\": \"https://metadata-assets.mirrorworld.fun/mirror_jump/images/Legendary_Astronaut.png\"\n            }\n        ],\n        \"list_status\": [\n            {\n                \"marketplace_address\": \"0x6750A2FA00926758631C609CEC34F1D9840131b4\",\n                \"list_price\": \"1.1\",\n                \"list_time\": \"2023-03-16T13:50:54.317Z\",\n                \"list_count\": 1,\n                \"list_operator\": \"0xB2d333A02d10319430191374847C2CD414961cFe\"\n            }\n        ]\n    }\n}"},{"id":"4d8bac34-16a4-4e05-b7e1-a7be6c551f55","name":"Success","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/metadata/nft/:contract/:token_id?marketplace_address=0x0","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","metadata","nft",":contract",":token_id"],"query":[{"description":"evm marketplace address","key":"marketplace_address","value":"0x0"}],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"},{"key":"contract","value":"0x011135F655e0916345C5188aA14fD4E2FEf1845E","description":"contract address"},{"key":"token_id","value":"1","description":"nft token id"}]},"description":"｜ **Get evm nft info by contract address and tokenid**\n*Required parameters:* - **contract** | `string` The contract address. - **token_id** | `integer` The token id.\n*Optional parameters:* - **marketplace_address** | `string` The marketplace address."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"success\",\n    \"data\": {\n        \"contract\": \"0x011135F655e0916345C5188aA14fD4E2FEf1845E\",\n        \"token_id\": 1,\n        \"name\": \"example nft 1\",\n        \"owner_address\": [\n            {\n                \"owner_address\": \"owner address\",\n                \"amount\": 1\n            }\n        ],\n        \"image\": \"https://metadata-assets.mirrorworld.fun/mirror_jump/images/Legendary_Astronaut.png\",\n        \"price\": \"0.1\",\n        \"listed\": false,\n        \"attributes\": [\n            {\n                \"trait_type\": \"rarity\",\n                \"value\": \"common\"\n            }\n        ],\n        \"off_chain_attribute\": [\n            {\n                \"trait_type\": \"color\",\n                \"value\": \"blue\"\n            }\n        ],\n        \"skill_attributes\": [\n            {\n                \"trait_type\": \"attack\",\n                \"value\": \"100\",\n                \"image\": \"https://metadata-assets.mirrorworld.fun/mirror_jump/images/Legendary_Astronaut.png\"\n            }\n        ],\n        \"list_status\": [\n            {\n                \"marketplace_address\": \"0x6750A2FA00926758631C609CEC34F1D9840131b4\",\n                \"list_price\": \"1.1\",\n                \"list_time\": \"2023-03-16T13:50:54.317Z\",\n                \"list_count\": 1,\n                \"list_operator\": \"0xB2d333A02d10319430191374847C2CD414961cFe\"\n            }\n        ]\n    }\n}"},{"id":"1cc0747d-7c93-41e0-962b-2740c71cdd2f","name":"Server Params Error","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/metadata/nft/:contract/:token_id?marketplace_address=0x0","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","metadata","nft",":contract",":token_id"],"query":[{"description":"evm marketplace address","key":"marketplace_address","value":"0x0"}],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"},{"key":"contract","value":"0x011135F655e0916345C5188aA14fD4E2FEf1845E","description":"contract address"},{"key":"token_id","value":"1","description":"nft token id"}]},"description":"｜ **Get evm nft info by contract address and tokenid**\n*Required parameters:* - **contract** | `string` The contract address. - **token_id** | `integer` The token id.\n*Optional parameters:* - **marketplace_address** | `string` The marketplace address."},"status":"Server Params Error","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 2000001,\n    \"message\": \"params error\",\n    \"data\": {},\n    \"status\": \"failed\"\n}"},{"id":"18eb58f2-4056-4285-bebf-d731252e36fb","name":"Server Nft Not Exist Error","originalRequest":{"method":"GET","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/metadata/nft/:contract/:token_id?marketplace_address=0x0","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","metadata","nft",":contract",":token_id"],"query":[{"description":"evm marketplace address","key":"marketplace_address","value":"0x0"}],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"},{"key":"contract","value":"0x011135F655e0916345C5188aA14fD4E2FEf1845E","description":"contract address"},{"key":"token_id","value":"1","description":"nft token id"}]},"description":"｜ **Get evm nft info by contract address and tokenid**\n*Required parameters:* - **contract** | `string` The contract address. - **token_id** | `integer` The token id.\n*Optional parameters:* - **marketplace_address** | `string` The marketplace address."},"status":"Server Nft Not Exist Error","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 2000002,\n    \"message\": \"nft not exist\",\n    \"data\": {},\n    \"status\": \"failed\"\n}"}],"_postman_id":"bd54ebea-938b-4ac8-b1e9-227d3e760a14"},{"name":"Get nfts info","id":"3b2b445a-e455-4aba-a90b-70ec30989f1b","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"marketplace_address\": \"0x6750A2FA00926758631C609CEC34F1D9840131b4\",\n    \"contract\": \"0x011135F655e0916345C5188aA14fD4E2FEf1845E\",\n    \"page\": 1,\n    \"page_size\": 10,\n    \"order\": {\n        \"order_by\": \"price\",\n        \"desc\": true\n    },\n    \"sale\": 0,\n    \"filter\": [\n        {\n            \"filter_name\": \"color\",\n            \"filter_type\": \"enum\",\n            \"filter_value\": [\n                \"blue\",\n                \"red\"\n            ]\n        },\n        {\n            \"filter_name\": \"attack\",\n            \"filter_type\": \"range\",\n            \"filter_value\": [\n                1,\n                10\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/metadata/nfts","description":"<p><strong>Get evm nfts info by filter items and order items.</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>contract</strong> | <code>string</code> The contract address.</li>\n<li><strong>sale</strong> | <code>integer</code> The sale status, 0: All, 1: For sale, 2: Not for sale.</li>\n<li><strong>page</strong> | <code>integer</code> The page number, page &gt; 0.</li>\n<li><strong>page_size</strong> | <code>integer</code> The page size, 0 &lt; page size &lt;= 50.</li>\n<li><strong>order</strong> | <code>array</code> The order items.</li>\n<li><strong>order.order_by</strong> | <code>string</code> The order filed.</li>\n<li><strong>order.desc</strong> | <code>boolean</code> The order, true: desc, false: asc.</li>\n</ul>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>marketplace_address</strong> | <code>string</code> The marketplace address.</li>\n<li><strong>filter</strong> | <code>array</code> The filter items.</li>\n<li><strong>filter.filter_name</strong> | <code>string</code> The filter name.</li>\n<li><strong>filter.filter_type</strong> | <code>string</code> The filter type, enum/range.</li>\n<li><strong>filter.filter_value</strong> | <code>array</code> The filter value, filter_value can be integer\\string.</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","metadata","nfts"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"4d683885-4e5b-4d5b-8ad5-8ae062aef5b2","type":"any","value":"ethereum","key":"chain"},{"id":"24deb80e-676d-4318-ba84-90218659f33e","type":"any","value":"goerli","key":"network"}]}},"response":[{"id":"86cf5b25-afd1-4144-8b7d-fc2e9b119c57","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"marketplace_address\": \"0x6750A2FA00926758631C609CEC34F1D9840131b4\",\n    \"contract\": \"0x011135F655e0916345C5188aA14fD4E2FEf1845E\",\n    \"page\": 1,\n    \"page_size\": 10,\n    \"order\": {\n        \"order_by\": \"price\",\n        \"desc\": true\n    },\n    \"sale\": 0,\n    \"filter\": [\n        {\n            \"filter_name\": \"color\",\n            \"filter_type\": \"enum\",\n            \"filter_value\": [\n                \"blue\",\n                \"red\"\n            ]\n        },\n        {\n            \"filter_name\": \"attack\",\n            \"filter_type\": \"range\",\n            \"filter_value\": [\n                1,\n                10\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/metadata/nfts","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","metadata","nfts"],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"}]},"description":"**Get evm nfts info by filter items and order items.**\n\n*Required parameters:*\n- **contract** | `string` The contract address.\n- **sale** | `integer` The sale status, 0: All, 1: For sale, 2: Not for sale.\n- **page** | `integer` The page number, page > 0.\n- **page_size** | `integer` The page size, 0 < page size <= 50.\n- **order** | `array` The order items.\n- **order.order_by** | `string` The order filed.\n- **order.desc** | `boolean` The order, true: desc, false: asc.\n\n*Optional parameters:*\n- **marketplace_address** | `string` The marketplace address.\n- **filter** | `array` The filter items.\n- **filter.filter_name** | `string` The filter name.\n- **filter.filter_type** | `string` The filter type, enum/range.\n- **filter.filter_value** | `array` The filter value, filter_value can be integer\\string. \n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"success\",\n    \"data\": {\n        \"total_page\": 1,\n        \"page_size\": 10,\n        \"nfts\": [\n            {\n                \"contract\": \"0x011135F655e0916345C5188aA14fD4E2FEf1845E\",\n                \"token_id\": 1,\n                \"name\": \"example nft 1\",\n                \"owner_address\": \"\",\n                \"image\": \"https://metadata-assets.mirrorworld.fun/mirror_jump/images/Legendary_Astronaut.png\",\n                \"price\": \"0.1\",\n                \"listed\": false\n            }\n        ]\n    }\n}"},{"id":"0d3a5761-c66a-42d7-b69c-9b9f0490b6cd","name":"Server Params Error","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"marketplace_address\": \"0x6750A2FA00926758631C609CEC34F1D9840131b4\",\n    \"contract\": \"0x011135F655e0916345C5188aA14fD4E2FEf1845E\",\n    \"page\": 1,\n    \"page_size\": 10,\n    \"order\": {\n        \"order_by\": \"price\",\n        \"desc\": true\n    },\n    \"sale\": 0,\n    \"filter\": [\n        {\n            \"filter_name\": \"color\",\n            \"filter_type\": \"enum\",\n            \"filter_value\": [\n                \"blue\",\n                \"red\"\n            ]\n        },\n        {\n            \"filter_name\": \"attack\",\n            \"filter_type\": \"range\",\n            \"filter_value\": [\n                1,\n                10\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/metadata/nfts","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","metadata","nfts"],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"}]},"description":"**Get evm nfts info by filter items and order items.**\n\n*Required parameters:*\n- **contract** | `string` The contract address.\n- **sale** | `integer` The sale status, 0: All, 1: For sale, 2: Not for sale.\n- **page** | `integer` The page number, page > 0.\n- **page_size** | `integer` The page size, 0 < page size <= 50.\n- **order** | `array` The order items.\n- **order.order_by** | `string` The order filed.\n- **order.desc** | `boolean` The order, true: desc, false: asc.\n\n*Optional parameters:*\n- **marketplace_address** | `string` The marketplace address.\n- **filter** | `array` The filter items.\n- **filter.filter_name** | `string` The filter name.\n- **filter.filter_type** | `string` The filter type, enum/range.\n- **filter.filter_value** | `array` The filter value, filter_value can be integer\\string. \n"},"status":"Server Params Error","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 2000001,\n    \"message\": \"params error\",\n    \"data\": {},\n    \"status\": \"failed\"\n}"}],"_postman_id":"3b2b445a-e455-4aba-a90b-70ec30989f1b"},{"name":"Get nft events","id":"81ce1fd9-df97-454b-874e-56e958d4d64d","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"contract\": \"0x011135F655e0916345C5188aA14fD4E2FEf1845E\",\n    \"token_id\": 1,\n    \"page\": 1,\n    \"page_size\": 10\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/metadata/nft/events","description":"<p><strong>Get evm nft events</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>contract</strong> | <code>string</code> The contract address.</li>\n<li><strong>token_id</strong> | <code>integer</code> The token id.</li>\n<li><strong>page</strong> | <code>integer</code> The page number, page &gt; 0.</li>\n<li><strong>page_size</strong> | <code>integer</code> The page size, 0 &lt; page size &lt;= 50.</li>\n</ul>\n<p><em>Optional parameters:</em></p>\n<ul>\n<li><strong>marketplace_address</strong> | <code>string</code> The marketplace address.</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","metadata","nft","events"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"193b1c17-81ca-4c05-af1f-8302bf5afa85","type":"any","value":"ethereum","key":"chain"},{"id":"0eb5a4f6-cbad-41a2-a776-687c1e8f1200","type":"any","value":"goerli","key":"network"}]}},"response":[{"id":"266d2a54-fbd3-4bac-8434-5c92a9c33cc2","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"contract\": \"0x011135F655e0916345C5188aA14fD4E2FEf1845E\",\n    \"token_id\": 1,\n    \"page\": 1,\n    \"page_size\": 10\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/metadata/nft/events","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","metadata","nft","events"],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"}]},"description":"**Get evm nft events**\n\n*Required parameters:*\n- **contract** | `string` The contract address.\n- **token_id** | `integer` The token id.\n- **page** | `integer` The page number, page > 0.\n- **page_size** | `integer` The page size, 0 < page size <= 50.  \n\n*Optional parameters:*\n- **marketplace_address** | `string` The marketplace address.\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"total_page\": 1,\n        \"page_size\": 10,\n        \"events\": [\n            {\n                \"contract\": \"0x011135F655e0916345C5188aA14fD4E2FEf1845E\",\n                \"token_id\": 1,\n                \"payment_token\": \"\",\n                \"marketplace_address\": \"0xC3062b874C39a1Cab11838aFe0757a82011eeE6c\",\n                \"event_type\": \"list\",\n                \"price\": \"0.1\",\n                \"from_address\": \"0x8ad1eF6dD60F94c5FD280E5fe667d65eaa727Ff7\",\n                \"to_address\": \"\",\n                \"event_date\": \"2023-02-14T08:14:08.454Z\",\n                \"signature\": \"0xf8d958f643de03d30d8fb1cc8559ff8a56918d9b2c7d34d75816905ff9c6a429\",\n                \"date_tag\": \"3 minutes ago\"\n            }\n        ]\n    },\n    \"code\": 0,\n    \"message\": \"success\"\n}"},{"id":"3d2fdf4c-d35b-4721-bcbe-30d9702da716","name":"Server Params Error","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"contract\": \"0x011135F655e0916345C5188aA14fD4E2FEf1845E\",\n    \"token_id\": 1,\n    \"page\": 1,\n    \"page_size\": 10\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/metadata/nft/events","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","metadata","nft","events"],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"}]},"description":"**Get evm nft events**\n\n*Required parameters:*\n- **contract** | `string` The contract address.\n- **token_id** | `integer` The token id.\n- **page** | `integer` The page number, page > 0.\n- **page_size** | `integer` The page size, 0 < page size <= 50.  \n\n*Optional parameters:*\n- **marketplace_address** | `string` The marketplace address.\n"},"status":"Server Params Error","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 2000001,\n    \"message\": \"params error\",\n    \"data\": {},\n    \"status\": \"failed\"\n}"}],"_postman_id":"81ce1fd9-df97-454b-874e-56e958d4d64d"},{"name":"Search nft","id":"7b0af675-c7ff-43f0-b88e-097439addc5c","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collections\": [\n        \"BXqCckKEidhJUpYrg4u2ocdiDKwJY3WujHvVDPTMf6nL\"\n    ],\n    \"search\": \"Jump\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/metadata/nft/search","description":"<p><strong>Search evm nft</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>collections</strong> | <code>string[]</code> The list of contract address.</li>\n<li><strong>search</strong> | <code>string</code> The search filed</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","metadata","nft","search"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"538b0eee-e6e0-4a94-8c06-5f1b080a94aa","type":"any","value":"ethereum","key":"chain"},{"id":"0245eea1-bd08-40a3-b5cf-5821f2cc607b","type":"any","value":"goerli","key":"network"}]}},"response":[{"id":"84160bad-d005-4968-9672-baf57b4f5594","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collections\": [\n        \"BXqCckKEidhJUpYrg4u2ocdiDKwJY3WujHvVDPTMf6nL\"\n    ],\n    \"search\": \"Jump\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/metadata/nft/search","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","metadata","nft","search"],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"}]},"description":"**Search evm nft**\n\n*Required parameters:*\n- **collections** | `string[]` The list of contract address.\n- **search** | `string` The search filed\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"success\",\n    \"data\": [\n        {\n            \"contract\": \"0x011135F655e0916345C5188aA14fD4E2FEf1845E\",\n            \"token_id\": 1,\n            \"name\": \"example nft 1\",\n            \"owner_address\": \"\",\n            \"image\": \"https://metadata-assets.mirrorworld.fun/mirror_jump/images/Legendary_Astronaut.png\",\n            \"price\": \"0.1\",\n            \"listed\": false\n        }\n    ]\n}"}],"_postman_id":"7b0af675-c7ff-43f0-b88e-097439addc5c"},{"name":"Recommend search nft","id":"a7f87225-15ba-47d0-b8bf-701155509647","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collections\": [\n        \"BXqCckKEidhJUpYrg4u2ocdiDKwJY3WujHvVDPTMf6nL\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/metadata/nft/search/recommend","description":"<p><strong>Recommend search evm nft</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>collections</strong> | <code>string[]</code> The list of contract address.</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","metadata","nft","search","recommend"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"95b4189d-3cbc-4547-8233-c16534fa9ae7","type":"any","value":"ethereum","key":"chain"},{"id":"51a45429-b9f9-4cc6-bfe4-1502f40eea38","type":"any","value":"goerli","key":"network"}]}},"response":[{"id":"39195715-0ac6-4dcb-9dca-6ea1d83df0e2","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collections\": [\n        \"BXqCckKEidhJUpYrg4u2ocdiDKwJY3WujHvVDPTMf6nL\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/metadata/nft/search/recommend","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","metadata","nft","search","recommend"],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"}]},"description":"**Recommend search evm nft**\n\n*Required parameters:*\n- **collections** | `string[]` The list of contract address.\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"code\": 0,\n    \"message\": \"success\",\n    \"data\": [\n        {\n            \"contract\": \"0x011135F655e0916345C5188aA14fD4E2FEf1845E\",\n            \"token_id\": 1,\n            \"name\": \"example nft 1\",\n            \"owner_address\": \"\",\n            \"image\": \"https://metadata-assets.mirrorworld.fun/mirror_jump/images/Legendary_Astronaut.png\",\n            \"price\": \"0.1\",\n            \"listed\": false\n        }\n    ]\n}"},{"id":"fad31c5e-97b1-40e3-8f0e-680af7e370f6","name":"Server Params Error","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"collections\": [\n        \"BXqCckKEidhJUpYrg4u2ocdiDKwJY3WujHvVDPTMf6nL\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/metadata/nft/search/recommend","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","metadata","nft","search","recommend"],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"}]},"description":"**Recommend search evm nft**\n\n*Required parameters:*\n- **collections** | `string[]` The list of contract address.\n"},"status":"Server Params Error","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 2000001,\n    \"message\": \"params error\",\n    \"data\": {},\n    \"status\": \"failed\"\n}"}],"_postman_id":"a7f87225-15ba-47d0-b8bf-701155509647"},{"name":"Get marketplace events","id":"1d87835f-38f2-499d-95fd-43270f6cc6fd","request":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"marketplace_address\": \"0xC3062b874C39a1Cab11838aFe0757a82011eeE6c\",\n    \"page\": 1,\n    \"page_size\": 10\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mirrorworld.fun/v2/:chain/:network/metadata/marketplace/events","description":"<p><strong>Get marketplace events by marketplace address</strong></p>\n<p><em>Required parameters:</em></p>\n<ul>\n<li><strong>marketplace_address</strong> | <code>string</code> The marketplace address.</li>\n<li><strong>page</strong> | <code>integer</code> The page number, page &gt; 0.</li>\n<li><strong>page_size</strong> | <code>integer</code> The page size, 0 &lt; page size &lt;= 50.</li>\n</ul>\n","urlObject":{"path":["v2",":chain",":network","metadata","marketplace","events"],"host":["https://api.mirrorworld.fun"],"query":[],"variable":[{"id":"160c11ee-2d88-42ce-9acf-3fb1d76c3339","type":"any","value":"ethereum","key":"chain"},{"id":"4a8cb53d-4144-4790-8e67-ca6a76564719","type":"any","value":"goerli","key":"network"}]}},"response":[{"id":"5d20a096-651e-4b05-b860-3653dc9822ea","name":"Success","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"marketplace_address\": \"0xC3062b874C39a1Cab11838aFe0757a82011eeE6c\",\n    \"page\": 1,\n    \"page_size\": 10\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/metadata/marketplace/events","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","metadata","marketplace","events"],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"}]},"description":"**Get marketplace events by marketplace address**\n\n*Required parameters:*\n- **marketplace_address** | `string` The marketplace address.\n- **page** | `integer` The page number, page > 0.\n- **page_size** | `integer` The page size, 0 < page size <= 50.\n"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"status\": \"success\",\n    \"data\": {\n        \"total_page\": 1,\n        \"page_size\": 10,\n        \"events\": [\n            {\n                \"contract\": \"0x011135F655e0916345C5188aA14fD4E2FEf1845E\",\n                \"token_id\": 1,\n                \"payment_token\": \"\",\n                \"marketplace_address\": \"0xC3062b874C39a1Cab11838aFe0757a82011eeE6c\",\n                \"event_type\": \"list\",\n                \"price\": \"0.1\",\n                \"from_address\": \"0x8ad1eF6dD60F94c5FD280E5fe667d65eaa727Ff7\",\n                \"to_address\": \"\",\n                \"event_date\": \"2023-02-14T08:14:08.454Z\",\n                \"signature\": \"0xf8d958f643de03d30d8fb1cc8559ff8a56918d9b2c7d34d75816905ff9c6a429\",\n                \"date_tag\": \"3 minutes ago\"\n            }\n        ]\n    },\n    \"code\": 0,\n    \"message\": \"success\"\n}"},{"id":"1af9cdf8-c949-4ce1-9182-311567b48e5d","name":"Server Params Error","originalRequest":{"method":"POST","header":[{"key":"x-api-key","value":""},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"marketplace_address\": \"0xC3062b874C39a1Cab11838aFe0757a82011eeE6c\",\n    \"page\": 1,\n    \"page_size\": 10\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.mirrorworld.fun/v2/:chain/:network/metadata/marketplace/events","host":["https://api.mirrorworld.fun"],"path":["v2",":chain",":network","metadata","marketplace","events"],"variable":[{"key":"chain","value":"ethereum"},{"key":"network","value":"goerli"}]},"description":"**Get marketplace events by marketplace address**\n\n*Required parameters:*\n- **marketplace_address** | `string` The marketplace address.\n- **page** | `integer` The page number, page > 0.\n- **page_size** | `integer` The page size, 0 < page size <= 50.\n"},"status":"Server Params Error","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 2000001,\n    \"message\": \"params error\",\n    \"data\": {},\n    \"status\": \"failed\"\n}"}],"_postman_id":"1d87835f-38f2-499d-95fd-43270f6cc6fd"}],"id":"7abd0df4-4472-49d4-9a7c-032d7488cadf","_postman_id":"7abd0df4-4472-49d4-9a7c-032d7488cadf","description":""}],"id":"25a5d3a8-961a-4509-ab99-702c962adbf3","_postman_id":"25a5d3a8-961a-4509-ab99-702c962adbf3","description":""}],"variable":[{"key":"baseUrl","value":"https://api.mirrorworld.fun"},{"key":"apiKey","value":""}]}