cURL
curl --request POST \ --url 'https://share-ddn.formless.xyz/v1#splits_fetch_data' \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "jsonrpc": "2.0", "id": "1", "method": "splits_fetch_data", "params": { "contract_address": "0x1234567890abcdef1234567890abcdef12345678", "network_id": 8453, "page": 0, "page_size": 25 } } '
{ "jsonrpc": "2.0", "id": "<string>", "result": { "total_slots": "<string>", "total_splits": 123, "community_allocation_percent": 123, "percent_per_slot": 123, "splits_data": [ { "wallet_address": "<string>", "percentage": 123, "unique_id": "<string>", "display_name": "<string>", "email_address": "<string>", "verified_identity": true } ], "pagination": { "total_records": 123, "current_page": 123, "total_pages": 123, "next_page": 123, "prev_page": 123 }, "email_addresses": [ "<string>" ], "split_percentage_owned_by_unique_id": 123 } }
Retrieve revenue split information for a smart contract
JWT token with Unique ID identification
2.0
splits_fetch_data
Show child attributes
The digital property contract address
Blockchain network ID (8453 for Base)
8453
Page number for pagination (starts at 0)
Number of splits per page (max 25)
x <= 25
Successful response
Total number of slots in the revenue split contract
Total number of unique split holders
Percentage of revenue allocated to community splits
Percentage of revenue per individual slot
Array of split holder information for the current page
Wallet address of the split holder
Percentage of revenue this holder receives
Unique ID of the split holder
Display name of the split holder
Email address of the split holder
Whether the identity has been verified
Total number of split holders
Current page number
Total number of pages
Next page number (null if on last page)
Previous page number (null if on first page)
Email addresses of split holders on current page
Percentage owned by the requesting user's Unique ID