Skip to main content
GET
/
agent
/
fees
/
org
{
    "status": "success",
    "organization": "Symphony",
    "count": 6,
    "data": {
        "loky": {
            "fee": 0.075,
            "feeAddress": "0x82fa02070045e66775a0e60662df77823a86e360",
            "type": "flat",
            "agentType": null,
            "updatedAt": "2025-10-29T01:17:33.195Z"
        },
        "phala": {
            "fee": 0.1,
            "feeAddress": "0xd1d9ada227ecfcab1dc6f3715a538fb09bfc402b",
            "type": "flat",
            "agentType": null,
            "updatedAt": "2025-10-29T01:17:33.195Z"
        },
        "rei": {
            "fee": 0.8,
            "feeAddress": "0x8eaa52ef427e5710921d5abe424896f5f6b1a4d9",
            "type": "flat",
            "agentType": null,
            "updatedAt": "2025-10-29T01:17:33.195Z"
        },
        "shekel": {
            "fee": 3.5,
            "feeAddress": "0x48597afa1c4e7530ca8889ba9291494757feabd2",
            "type": "bps",
            "agentType": null,
            "updatedAt": "2025-10-29T01:17:33.195Z"
        },
        "shekel_buyback": {
            "fee": 0.25,
            "feeAddress": "0x20ded6433c5f9fa2c7a0aa1acf86a9d1330f09a5",
            "type": "flat",
            "agentType": null,
            "updatedAt": "2025-10-29T01:17:33.195Z"
        },
        "symphony": {
            "fee": 1.5,
            "feeAddress": "0x56d0573c786d3dbad5669f6ded961031ad5badd9",
            "type": "bps",
            "agentType": null,
            "updatedAt": "2025-10-29T01:17:33.195Z"
        }
    }
}
This endpoint is used to get the fees for an organization. The organization field is extracted from the B2B JWT token.
status
string
Status of the response
organization
string
Organization name
count
number
Number of fee partners
data
object
Object with partner names as keys and fee configurations as values

Authentication

Privy Auth

Response Example

{
    "status": "success",
    "organization": "Symphony",
    "count": 6,
    "data": {
        "loky": {
            "fee": 0.075,
            "feeAddress": "0x82fa02070045e66775a0e60662df77823a86e360",
            "type": "flat",
            "agentType": null,
            "updatedAt": "2025-10-29T01:17:33.195Z"
        },
        "phala": {
            "fee": 0.1,
            "feeAddress": "0xd1d9ada227ecfcab1dc6f3715a538fb09bfc402b",
            "type": "flat",
            "agentType": null,
            "updatedAt": "2025-10-29T01:17:33.195Z"
        },
        "rei": {
            "fee": 0.8,
            "feeAddress": "0x8eaa52ef427e5710921d5abe424896f5f6b1a4d9",
            "type": "flat",
            "agentType": null,
            "updatedAt": "2025-10-29T01:17:33.195Z"
        },
        "shekel": {
            "fee": 3.5,
            "feeAddress": "0x48597afa1c4e7530ca8889ba9291494757feabd2",
            "type": "bps",
            "agentType": null,
            "updatedAt": "2025-10-29T01:17:33.195Z"
        },
        "shekel_buyback": {
            "fee": 0.25,
            "feeAddress": "0x20ded6433c5f9fa2c7a0aa1acf86a9d1330f09a5",
            "type": "flat",
            "agentType": null,
            "updatedAt": "2025-10-29T01:17:33.195Z"
        },
        "symphony": {
            "fee": 1.5,
            "feeAddress": "0x56d0573c786d3dbad5669f6ded961031ad5badd9",
            "type": "bps",
            "agentType": null,
            "updatedAt": "2025-10-29T01:17:33.195Z"
        }
    }
}