Get all Active Claims

updated as of 5/9/2023

This is useful if you want to build some aggregator site. "Active" in this sense means that it has started and not yet ended.

This endpoint has a 5-min cache.

Get all active claims

GET https://apps.api.manifoldxyz.dev/public/instance/live?appId=2537426615

Returns all active claims (have started and not yet ended)

Query Parameters

NameTypeDescription

pageNumber

String

Which page to get, for pagination

pageSize

String

The size of the page to get, for pagination

{
	"count": 3,
	"total": 32417,
	"instances": [{
		"id": 1853862128,
		"creator": {
			"id": 1856452848,
			"image": null,
			"name": "Jonathan Vinson",
			"twitterUrl": "",
			"address": "0xbfe526d951abb9538feb91b31f4be551e170a379"
		},
		"slug": "waiting-for-something",
		"publicData": {
			"name": "Waiting For Something",
			"image": "https://assets.manifold.xyz/image/upload/c_limit,q_80,w_1024/00786547456e3a10dd7e9e1dd42b30b48ca45165f5f2ace414431bfa07fe4f06.jpg",
			"endDate": null,
			"tokenUrl": "https://assets.manifold.xyz/image/upload/c_limit,q_80,w_1024/00786547456e3a10dd7e9e1dd42b30b48ca45165f5f2ace414431bfa07fe4f06.jpg",
			"claimType": "ERC1155",
			"isPayable": true,
			"startDate": "2022-11-01T16:00:00.000Z",
			"audienceId": null,
			"claimIndex": 1,
			"description": "I frequently go here for sunset. While I was taking photos, I had a conversation with this lady who was fishing. She was with her mother, who was on the other side of the dock. She hadn't caught anything yet, but was patiently waiting. It's a reminder to persevere with peace. We are all waiting for something. ",
			"extensionAddress": "0x4e32004d8b81847a670b4a1778ace4dcf2bba01e",
			"fallbackProvider": "",
			"mediaIsLandscape": true,
			"creatorContractAddress": "0xb281de8b30bb78ad1a28a2e1641b552d277b2d4b"
		},
		"appId": 2537426615
	}, {
		"id": 1611159792,
		"creator": {
			"id": 1761513712,
			"image": null,
			"name": "OhHungryArtist",
			"twitterUrl": "",
			"address": "0xa7625e30eb5356a0b777e9617b55a92dddff2975"
		},
		"slug": "PurpleGirl",
		"publicData": {
			"name": "Baby, don't hurt me!",
			"image": "https://assets.manifold.xyz/image/upload/c_limit,q_80,w_1024/d318ec0b8f7b5179995b4e636f2b764b7db63acf56500853b2d38b4acd0e8e58.jpg",
			"endDate": "2022-12-12T23:00:00.000Z",
			"tokenUrl": "https://assets.manifold.xyz/image/upload/c_limit,q_80,w_1024/d318ec0b8f7b5179995b4e636f2b764b7db63acf56500853b2d38b4acd0e8e58.jpg",
			"claimType": "erc721",
			"isPayable": true,
			"startDate": null,
			"arweaveURL": "https://arweave.net/p4skCDIJP8Wc0Aqg-x4WBrbQ9dvUQ2DKKfk5bUPzfgU",
			"audienceId": null,
			"claimIndex": 1611159792,
			"description": "Love can make us Gods, but also can break our hearts\n\nBased on my oil painting, 2017",
			"extensionAddress": "0xa46f952645d4deec07a7cd98d1ec9ec888d4b61e",
			"fallbackProvider": "",
			"mediaIsLandscape": true,
			"creatorContractAddress": "0x75c6e4f5ef693aa460f3f97d7da7a8d76d24488b"
		},
		"appId": 2537426615
	}, {
		"id": 643709168,
		"creator": {
			"id": 747370736,
			"image": null,
			"name": "Amal",
			"twitterUrl": "",
			"address": "0xdad148546841885b78d52e36c5a26a71292b5a75"
		},
		"slug": "LamamalsPapers",
		"publicData": {
			"name": "Outlook",
			"image": "https://assets.manifold.xyz/image/upload/c_limit,q_80,w_1024/8f981dac546bae444f06b38346605c03ddb76b532ed3229bdf3e20e926f86031.jpg",
			"endDate": "",
			"tokenUrl": "https://assets.manifold.xyz/image/upload/c_limit,q_80,w_1024/8f981dac546bae444f06b38346605c03ddb76b532ed3229bdf3e20e926f86031.jpg",
			"claimType": "ERC1155",
			"isPayable": false,
			"startDate": "",
			"audienceId": 3734647336,
			"claimIndex": 643709168,
			"description": "A couple visits the gallery after a heavy lunch to stimulate their brains' right hemispheres.",
			"extensionAddress": "0x44e94034afce2dd3cd5eb62528f239686fc8f162",
			"fallbackProvider": "",
			"mediaIsLandscape": true,
			"creatorContractAddress": "0x715681013069d47d04f867813b1c5fafd277fa1e"
		},
		"appId": 2537426615
	}]
}

Example curl

curl -X GET https://apps.api.manifoldxyz.dev/public/instance/live?appId=2537426615&pageNumber=1&pageSize=3

Last updated