🧑‍🚀 CERTHIS 🧑‍🚀
  • 🎯GET STARTED
    • Platform Quick Overview
    • Certhis Academy
    • Create Collection
  • 👾API Object References
    • Collection
    • NFT
    • User
    • Label
    • Currency
  • 🖼️Dynamic NFT
    • Authentication
    • API Endpoints
  • ⚙️Web3 CRM
    • API Endpoints
    • Webhook
  • 🍏Apple & Google Wallet
    • API Endpoints
    • Scanner
  • 🛒NFT Checkout
    • Claimer
    • API Endpoint
  • ⛏️Mint API
    • API Endpoint
    • MINTER ADDRESS
    • Webhook
    • Free Claim User
  • ✴️API endpoints
    • COLLECTION
    • CURRENCIES
    • NFT
    • STATISTICS
    • TRANSACTIONS
    • USER
    • SIGNATURE
    • CONTRACT
  • 📖Certhis SDK
    • Deploy Collection
    • Fetch NFT
    • Fetch Transactions
  • 💰Certhis WALLET
    • Introduction
    • Usage
    • Generate Wallet
    • Export private key
    • Connect to DAPP
  • 📜Smart Contract
    • ABI
    • INTERFACE
    • Audit
    • Contract Checker
  • 💸Royalties
    • Mint Royalties
    • Resell Royalties
    • Affiliation Royalties
    • Co-Creator Royalties
    • Deactivate Collection Royatlies
  • GATE
  • Community
    • 🔗Certhis On Social Media
    • 🏛️Founders
    • 📞Contact
  • FAQ
    • ❔FAQ
Powered by GitBook
On this page
  • POST API Credential
  • POST MINT NFT
  • GET MINT STATUS
  • GET MINT TASK LIST
  • GET MINT TASK LIST
  1. Mint API

API Endpoint

POST API Credential

On success, it will return API KEY & API SECRET

Example of request:

 https://api.certhis.io/mint_access

Form parameter

Parameter
Description

collection_index

the collection index

signature

the signature

wallet

the wallet collection owner

ask

null or 1 if you need to regenrate

```json
{
    "status": true,
    "data": {
        "api_key": "API KEY",
        "api_secret": "API PASS"
    }
}
```

POST MINT NFT

On success, it will return a task id

Example of request:

 https://api.certhis.io/mint

Header Param

Parameter
Description

api_key

the api key

api_secret

api secret

Form parameter

Parameter
Description

wallet

the wallet to send the NFT(or email address)

nft_id

if specified

token_uri

if specified

```json
{
    "status": true,
    "message": "created",
    "data": {
        "task_id": 3
    }
}
```

GET MINT STATUS

On success, it will return a STATUS

Example of request:

https://api.certhis.io/mint_status

Query parameter

Parameter
Description

api_key

the api key

api_secret

api secret

task_id

task id of the mint process

```json
{
    "status": true,
    "data": {
        "nft": {
            "id": 133436,
            "nft_id": 0,
            "collection_id": 259,
            "owner_address": "0x50A3110CC522b0e252a977726Ef50D15521234d5",
            "creator_address": "0x8e7B74d6EEA64AD4E66C66aC4837674181982F7C",
            "ipfs_object": {
                "name": "TestF1",
                "description": "",
                "image": "https://utility-apps-assets.certhis.io/upload/2024/02/12/61d460c0-c9c6-11ee-8f7a-ebbb6a469e34.png",
                "attributes": []
            },
            "collection_object": {
                "id": 1535,
                "collection_id": 259,
                "collection_name": "BillboardX",
                "collection_logo": null,
                "collection_header": null,
                "collection_symbole": "BLLBRDX",
                "collection_tax": 0,
                "collection_address": "0x08C4C326E5dfbD75ccBf263557FCd44A26Fa2df6",
                "root_price": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff",
                "certhis_tax": null,
                "price_for_mint": 0,
                "whitelist": "[\"0x50A3110CC522b0e252a977726Ef50D15521234d5\"]",
                "collection_full": 1,
                "root": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff",
                "mintable_activate": 0,
                "collection_type": 0,
                "currency_for_mint": "0x0000000000000000000000000000000000000000",
                "collection_price": null
            },
            "label_object": {
                "label_name": null,
                "label_logo": null,
                "label_tax": 0,
                "contract_id": 63
            },
            "owner_object": {
                "id": 527,
                "pseudo": "pr4cy",
                "profile_pic": "https://utility-apps-assets.certhis.io/upload/2024/01/29/01a41be0-bebe-11ee-8db9-6d3d20681287-test.png",
                "header_pic": 1435
            },
            "creator_object": {
                "pseudo": null,
                "profile_pic": null,
                "header_pic": null
            },
            "currency_object": {
                "name": "MATIC",
                "decimals": 18,
                "symbol": "MATIC",
                "logoURI": ""
            },
            "collection_currency_object": {
                "name": "MATIC",
                "decimals": 18,
                "symbol": "MATIC"
            },
            "chain_id": 80001,
            "extra_price_collection": null,
            "extra_currency_collection": "0x0000000000000000000000000000000000000000",
            "token_uri": "https://dynamic-api.certhis.io/bs6did6dnl8uz78yi0nlmzaxhi-101/0.json",
            "sellable_type": 0,
            "sellable_currency": "0x0000000000000000000000000000000000000000",
            "sellable_amount": "0",
            "royalties": 0,
            "created": "2024-02-12T16:49:48.000Z",
            "updated": "2024-02-12T16:49:48.000Z",
            "minted": 1,
            "chain_name": "POLYGON Mumbai",
            "is_sbt": false
        },
        "status": 2,
        "message": "success",
        "updated": "2024-02-12T16:49:48.000Z",
        "created": "2024-02-12T16:49:38.000Z",
        "wallet": "0x50A3110CC522b0e252a977726Ef50D15521234d5"
    }
}
```

GET MINT TASK LIST

On success, it will return a task LIST

Example of request:

 https://api.certhis.io/mint_task_list

Query parameter

Parameter
Description

api_key

the api key

api_secret

api secret

offset

segmentation id

```json
{
    "status": true,
    "data": [
        {
            "id": 209,
            "api_id": 3,
            "user_id": 527,
            "status": 2,
            "nft_id": null,
            "created": "2024-02-12T16:49:38.000Z",
            "updated": "2024-02-12T16:49:48.000Z",
            "token_uri": null,
            "message": "success",
            "nft_index": 133436,
            "address": "0x50A3110CC522b0e252a977726Ef50D15521234d5"
        }
    ]
}
```

GET MINT TASK LIST

PreviousMint APINextMINTER ADDRESS

Last updated 10 months ago

⛏️