Get Claim by Slug

updated as of 4/26/2023

This is useful if you have the slug or direct link to the Claim.

Get claim data from a slug

GET https://apps.api.manifoldxyz.dev/public/instance/data?appId=2537426615&instanceSlug={slug}

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

*Note: The appId for Manifold Claims is 2537426615

Path Parameters

NameTypeDescription

slug*

String

The slug for the Manifold Claim

{
	"id": 1851414768,
	"creator": {
		"id": 1863852272,
		"image": null,
		"name": "yungwknd",
		"twitterUrl": "yungwknd",
		"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?appId=2537426615&instanceSlug=ferrari

Where Can I Find the Instance Slug?

It's the end of the URL of any Claim page you are on!

Last updated