β Get Verified Vaults
Base URL
All API requests should be made to the following base URL:
https://v2.emblemvault.ioAPI Endpoints
Get a list of verified vaults for the provided project and chain
Fetches all the verified vault Id's for a given project and chain
Endpoint:
GET {baseURL}/verifiedQuery string Parameters:
project(required): The project name you are looking forchain(required): The asset chain name you are looking for
Headers:
x-api-key(required): Your API key. It should be sent in the request header.
Responses:
200 OK- The request was successful, and the metadata is returned.Example successful response:
[ { "asset_chain": "XCP", "asset_name": "StamPunk #2995", "project": "STAMPS", "tokenid": "19115958883815831" }, { "asset_chain": "XCP", "asset_name": "StamPunk #5479", "project": "STAMPS", "tokenid": "17655615741700591" } ]
401 Unauthorized- The request was made with an incorrect or missing API key.Example response when no API key is provided:
Example response when the API key is incorrect:
400 Bad Request- The request was unsuccessful due to incorrect input or an error in processing. Check the response body for more information.Example response for not curated token ID:
Examples
Here's an example using the request library in Node.js to make a request to the API with the provided tokenId:
CURL
Last updated