> ## Documentation Index
> Fetch the complete documentation index at: https://align.tolbel.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Developer Fees

> Retrieve your configured developer fees

## Method Signature

```typescript theme={null}
align.developers.getFees(): Promise<DeveloperFeesResponse>
```

## Example

```typescript theme={null}
const response = await align.developers.getFees();

for (const fee of response.developer_receivable_fees) {
  console.log(`Service: ${fee.service_type}`);
  console.log(`Fee: ${fee.value}%`);
  console.log(`Basis: ${fee.accrual_basis}`);
}
```

## Response

```json theme={null}
{
  "developer_receivable_fees": [
    {
      "service_type": "offramp",
      "value": 0.5,
      "accrual_basis": "percentage"
    },
    {
      "service_type": "onramp",
      "value": 0.5,
      "accrual_basis": "percentage"
    }
  ]
}
```

## Related Methods

<CardGroup cols={2}>
  <Card title="Update Fees" icon="pen" href="/docs/api/developers/update-fees">
    Configure your fees
  </Card>
</CardGroup>
