NFT Feeds

API Call

Base Url: https://nft-feeds.gora.io

Get Asset Floor Price: GET /api/v1/asset-floor-price

Parameters:

Example Call


https://nft-feeds.gora.io/api/v1/asset-floor-price?asset_contract_address=0xb932a70a57673d89f4acffbe830e8ed7f75fb9e0&token_id=22926&key=##signKey

Example Response (JSON)

{
    "status": 200,
    "result": "success",
    "description": "Successfully fetched OpenSeas Asset",
    "query": {
        "asset_contract_address": "0xb932a70a57673d89f4acffbe830e8ed7f75fb9e0",
        "token_id": "22926"
    },
    "provider": {
        "name": "OpenSeas",
        "subscription": true,
        "institutionGrade": true
    },
    "data": {
        "name": "Golf",
        "creator": "RivenRibbon",
        "collection_name": "SuperRare",
        "collection_slug": "superrare",
        "collection_floor_price": 0
    },
    "time": "Mon, 26 Jun 2023 16:55:54 GMT",
    "timestamp": 1687798554818
}

Results Schema

Base Url: https://nft-feeds.gora.io

Get Asset Contract: GET /api/v1/asset-contract

Parameters:

Example Call


https://nft-feeds.gora.io/api/v1/asset-contract?asset_contract_address=0xb932a70a57673d89f4acffbe830e8ed7f75fb9e0&key=##signKey

Example Response (JSON)

{
    "status": 200,
    "result": "success",
    "description": "Successfully fetched OpenSeas Asset Contract",
    "query": {
        "asset_contract_address": "0xb932a70a57673d89f4acffbe830e8ed7f75fb9e0"
    },
    "provider": {
        "name": "OpenSeas",
        "subscription": true,
        "institutionGrade": true
    },
    "data": {
        "address": "0xb932a70a57673d89f4acffbe830e8ed7f75fb9e0",
        "asset_contract_type": "non-fungible",
        "chain_identifier": "ethereum",
        "created_date": "2019-09-05T07:39:47.495758",
        "name": "SuperRare",
        "nft_version": null,
        "opensea_version": null,
        "owner": 173444539,
        "schema_name": "ERC721",
        "symbol": "SUPR",
        "total_supply": "39969",
        "description": "SuperRare makes it easy to create, sell, and collect rare digital art. SuperRare's smart contract platform allows artists to release limited-edition digital artwork tracked on the blockchain, making the pieces rare, verified, and collectible. Filter the crypto art world's best selling works by artist name, creation type, and year of birth on OpenSea.",
        "external_link": "https://superrare.co",
        "image_url": "https://i.seadn.io/gae/-1VbTF_qOdwTUTxW8KzJbFcMX0-mDF-BJM-gmmRl8ihvoo53PF_1z1m1snLXxwcxVFyJH7wk_kouq-KVyB55N9U?w=500&auto=format",
        "default_to_fiat": false,
        "dev_buyer_fee_basis_points": 0,
        "dev_seller_fee_basis_points": 0,
        "only_proxied_transfers": false,
        "opensea_buyer_fee_basis_points": 0,
        "opensea_seller_fee_basis_points": 250,
        "buyer_fee_basis_points": 0,
        "seller_fee_basis_points": 250,
        "payout_address": "0x79150011a8dc56857459f652d165fb772ee6eb1c"
    },
    "time": "Mon, 26 Jun 2023 17:44:35 GMT",
    "timestamp": 1687801475340
}

Results Schema

API Call

Base Url: https://nft-feeds.gora.io

Get Collection Floor Price: GET /api/v1/collection-floor-price

Parameters:

Example Call


https://nft-feeds.gora.io/api/v1/collection-floor-price?collection_contract_address=0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d&key=##signKey

Example Response (JSON)

{
    "status": 200,
    "result": "success",
    "description": "Successfully fetched OpenSeas Collection Stats",
    "query": {
        "collection_contract_address": "0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d"
    },
    "provider": {
        "name": "OpenSeas",
        "subscription": true,
        "institutionGrade": true
    },
    "data": {
        "collection_name": "Bored Ape Yacht Club",
        "floor_price": 37.69
    },
    "time": "Mon, 26 Jun 2023 19:44:33 GMT",
    "timestamp": 1687808673424
}

Results Schema

Last updated