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

# Get Project Budget

Get the budget of a project using the following logic:

* If the Project has a timeframe, the last budget-milestone within the timeframe is returned.
* If the Project has no timeframe, the very last budget-milestone is returned.
* If the Project has no budget-milestones, then the fixed budget is returned, if it exists.
* If none of the above applies, "204 No Content" is returned.

**Required Scopes**:

* `projects:view`

<Note>
  External Documentation

  To learn more, visit the [Tempo documentation](https://apidocs.tempo.io/#tag/Budget/operation/getBudget).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter  | Description            |
  | ---------- | ---------------------- |
  | Project ID | The ID of the project. |
</div>

## Example Output

```json theme={"dark"}
{
	"amount": {
		"currencyCode": "USD",
		"value": 1234.56
	},
	"self": "https://api.tempo.io/4/projects/dd442e10-75d1-4b80-9be3-9d1293ad23b9/budget"
}
```

## Workflow Library Example

[Get Project Budget with Tempo and Send Results Via Email](https://library.blinkops.com/workflows/get-project-budget-with-tempo-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/get-project-budget-with-tempo-and-send-results-via-email/canvas" />
</div>
