Luxor Documentation Hub Logo
Mining Pool/API Documentation/V2/Reporting

Get developer fee

Returns a list of all developer fee associated to a Workspace.

GET
/v2/pool/dev-fee

Authorization

authorization<token>

Use your API key here.

In: header

Query Parameters

subaccount_namesAny properties in Any properties in string,array<string>,array<string>
site_idAny properties in string,string
start_dateRequiredstring
Format: "date"
end_dateRequiredstring
Format: "date"
page_numberinteger
Default: 1Minimum: 1
page_sizeinteger
Default: 10Minimum: 1
curl -X GET "https://app.luxor.tech/api/v2/pool/dev-fee?subaccount_names=my_subaccount%2Canother_subaccount&site_id=b0a5fad8-0e09-4f10-ac20-ccd80fb2d138&start_date=2025-01-01&end_date=2025-01-31&page_number=1&page_size=10" \
  -H "authorization: <token>"

Default Response

{
  "start_date": "2025-01-01",
  "end_date": "2025-01-31",
  "devfee_data": [
    {
      "datetime": "2019-08-24T14:15:22Z",
      "devfee_hashrate": "1035827914295214",
      "devfee_revenue": 0.00066154,
      "subaccount": "my_subaccount"
    }
  ],
  "pagination": {
    "page_number": 1,
    "page_size": 1,
    "item_count": 0,
    "previous_page_url": null,
    "next_page_url": null
  }
}