Get Permissions

GET https://api.sfox.com/v1/enterprise/monetization/permissions

This endpoint returns all enabled monetization permissions for a Partner. The Partner can create monetization settings for any of the configurations returned from this endpoint. If a configuration is not listed, the Partner does not have the permissions to monetize that configuration.

Responses

200 OK
{
    "data": [
        {
            "monetized_feature": "Custody",
            "monetization_method": "Flat Fee"
        },
        {
            "monetized_feature": "Margin",
            "monetization_method": "Fee Rate"
        },
        {
            "monetized_feature": "Post-Trade Settlement",
            "monetization_method": "Fee Rate"
        },
        {
            "monetized_feature": "Request for Quote",
            "monetization_method": "Fee Rate"
        },
        {
            "monetized_feature": "Request for Quote",
            "monetization_method": "Spread Adjustment"
        },
        {
            "monetized_feature": "Spot Trading",
            "monetization_method": "Fee Rate"
        },
        {
            "monetized_feature": "Staking",
            "monetization_method": "Fee Rate"
        },
        {
            "monetized_feature": "Withdraw",
            "monetization_method": "Flat Fee"
        }
    ]
}

Response Body

Key
Description

monetization_feature

The sFOX feature to be monetized

monetization_method

The monetization method

Example Requests

curl -X GET \
-H "Authorization: Bearer ${ENTERPRISE_API_KEY}" \
'https://api.sfox.com/v1/enterprise/monetization/permissions'

Last updated