πŸ•ΈοΈAPI Endpoints

POST Create/Retrieve Access

Example of request:

https://dynamic-api.certhis.io/collection_access

Query Parameters

ParameterDescription

wallet

User's wallet address.

signature

Signature for authentication.

ask

Integer (0 for create/read, 1 for re-create).

collection_index

Index of the collection (optional).

POST Create/Update NFT

Example of request:

https://dynamic-api.certhis.io/nft

Query Parameters

ParameterDescription

template_id

ID of the template used for the NFT

name

Name of the NFT

description

Description of the NFT

attributes

JSON of NFT attributes

media_activate

Flag to activate media (1 to activate)

general_activate

Flag to activate general settings (1 to activate)

price_template

ID of the price template (optional)

sellable_activate

Flag to mark as sellable (1 to activate)

currency

Currency for pricing

chain_id

Blockchain ID

amount

Amount for pricing

GET List NFTs

Example of request:

https://dynamic-api.certhis.io/nft

Query Parameters

ParameterDescription

page

User's wallet address.

per_page

Signature for authentication.

search

Integer (0 for create/read, 1 for re-create).

template_id

Index of the collection (optional).

GET Collection Statistics

Example of request:

https://dynamic-api.certhis.io/stat

  • No additional parameters required.

GET Public NFT Metadata

Example of request:

https://dynamic-api.certhis.io/l3d5gmof3zcyuuukb82aetuyve-32/1.json

Sample response


{
    "name": "SantaBikerz2",
    "description": "",
    "image": "https://utility-apps-assets.certhis.io/upload/2023/12/26/4aa42de0-a3f6-11ee-968e-55d99e7401cf.png",
    "attributes": []
}

POST Create Template

Example of request:

https://dynamic-api.certhis.io/template

Form-data Parameters

ParameterDescription

name

Name of the template.

description

Description of the template.

image

Image file for the template.

animation_url

URL for template animation.

sellable_activate

Flag to mark as sellable (1 to activate).

amount

Amount for pricing.

currency

Currency for pricing.

chain_id

Blockchain ID.

decimal

Decimal points for pricing.

animation_link

Direct link to template animation.

PUT Update Template

Example of request:

https://dynamic-api.certhis.io/template

Form-data Parameters

ParameterDescription

template_id

ID of the template to update.

name

Name of the template.

description

Description of the template.

image

Image file for the template.

animation_url

URL for template animation.

sellable_activate

Flag to mark as sellable (1 to activate).

amount

Amount for pricing.

currency

Currency for pricing.

chain_id

Blockchain ID.

decimal

Decimal points for pricing.

animation_link

Direct link to template animation.

GET List Templates

Example of request:

https://dynamic-api.certhis.io/template

Form-data Parameters

ParameterDescription

page

Page number for pagination.

per_page

Number of templates per page.

search

Search term for templates.

GET Template Details

Example of request:

https://dynamic-api.certhis.io/template/:template_id
ParameterDescription

:template_id

The ID of the template.

POST Delete Template

Example of request:

 https://dynamic-api.certhis.io/template/delete/:template_id
ParameterDescription

:template_id

The ID of the template.

GET Template Details

Last updated