Skip to main content
POST
/
v1#splits_fetch_data
Fetch Revenue Split Data
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>",
        "unique_id": "<string>",
        "display_name": "<string>",
        "email_address": "<string>",
        "percentage": 123,
        "verified_identity": true
      }
    ],
    "email_addresses": [
      "<string>"
    ],
    "split_percentage_owned_by_unique_id": 123,
    "pagination": {
      "total_records": 123,
      "current_page": 123,
      "total_pages": 123,
      "next_page": 123,
      "prev_page": 123
    }
  }
}
Fetch detailed information about revenue splits for a contract, including all split holders, their percentages, and identity information. Results are paginated with a maximum of 25 splits per page.

Authorizations

Authorization
string
header
required

JWT token with Unique ID identification

Body

application/json
jsonrpc
enum<string>
default:2.0
required
Available options:
2.0
id
string
default:1
required
method
enum<string>
default:splits_fetch_data
required
Available options:
splits_fetch_data
params
object
required

Response

200 - application/json

Successful response

jsonrpc
enum<string>
required
Available options:
2.0
id
string
required
result
object
required
  • Option 1
  • Option 2
I