Get Claim by Instance ID

updated as of 4/26/2023

This is useful if you see the instanceId on chain.

Get claim data from an instance ID

GET https://apps.api.manifoldxyz.dev/public/instance/data?id={instanceId}

Given an instanceId , fetch and return all the info for a claim.

Path Parameters

{
	"id": 1851414768,
	"creator": {
		"id": 1863852272,
		"image": null,
		"name": "yungwknd",
		"twitterUrl": "richerd",
		"address": "0x6140f00e4ff3936702e68744f2b5978885464cbb"
	},
	"slug": "ferrari",
	"publicData": {
		"name": "scuderia ferrari",
		"image": "https://assets.manifold.xyz/image/upload/c_limit,q_80,w_1024/bc68f488caf37ea2a5e235a7818c09b66f8613bedae1e96b8fce41610ace992f.jpg",
		"endDate": "2022-10-24T21:00:00.000Z",
		"tokenUrl": "https://assets.manifold.xyz/video/upload/c_limit,q_80,w_1024/e1d062fb91c800ec7f15a2523c6d11c0c3a189d1bb7da3b4713c30aac8fa8a52.mp4",
		"claimType": "ERC1155",
		"isPayable": true,
		"startDate": null,
		"audienceId": null,
		"claimIndex": 2,
		"description": "celebrating leclerc and in memory of sainz\n\n🐴🏎",
		"extensionAddress": "0x4e32004d8b81847a670b4a1778ace4dcf2bba01e",
		"mediaIsLandscape": true,
		"creatorContractAddress": "0xefe6a6032fd27b7b7615fb0d0e08fb3e49db53b8"
	},
	"appId": 2537426615,
	"mintPrice": "0.0069",
	"isOpenEdition": true
}

Example curl

curl -X GEThttps://apps.api.manifoldxyz.dev/public/instance/data?id=1851414768

Where Can I Find the InstanceID?

It's in the input of the transaction on Etherscan! You can also find it in the bottom left inside the Claims App in Manifold Studio.

Last updated