Raiding API
Create Raid
Create X raid and publish it in your server
POST
/
v1
/
raiding
/
raids
Copy
curl --request POST \
--url https://api.flipsuite.xyz/v1/raiding/raids \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '{
"title": "Every Discord user has a wallet",
"postUrl": "https://x.com/flipsuitexyz/status/1927723129901654115",
"requirements": {
"like": true,
"comment": true,
"repost": true
},
"reward": {
"type": "TOKEN_POOL",
"item": {
"type": "TOKEN",
"chain": "Polygon",
"tokenAddress": "0x162539172b53e9a93b7d98fb6c41682de558a320",
"amount": 100000
}
}
}'
Copy
curl --request POST \
--url https://api.flipsuite.xyz/v1/raiding/raids \
--header 'Content-Type: application/json' \
--header 'x-api-key: <x-api-key>' \
--data '{
"title": "Every Discord user has a wallet",
"postUrl": "https://x.com/flipsuitexyz/status/1927723129901654115",
"requirements": {
"like": true,
"comment": true,
"repost": true
},
"reward": {
"type": "TOKEN_POOL",
"item": {
"type": "TOKEN",
"chain": "Polygon",
"tokenAddress": "0x162539172b53e9a93b7d98fb6c41682de558a320",
"amount": 100000
}
}
}'
Assistant
Responses are generated using AI and may contain mistakes.