<!--
{
  "availability" : [
    "iOS: 2.0.0 - 27.0.0",
    "iPadOS: 2.0.0 - 27.0.0",
    "macCatalyst: 13.1.0 - 27.0.0",
    "macOS: 10.0.0 - 27.0.0",
    "tvOS: 9.0.0 - 27.0.0",
    "visionOS: 1.0.0 - 27.0.0"
  ],
  "documentType" : "symbol",
  "framework" : "AudioToolbox",
  "identifier" : "/documentation/AudioToolbox/AUGraphGetIndNode(_:_:_:)",
  "metadataVersion" : "0.1.0",
  "role" : "Function",
  "symbol" : {
    "kind" : "Function",
    "modules" : [
      "Audio Toolbox"
    ],
    "preciseIdentifier" : "c:@F@AUGraphGetIndNode"
  },
  "title" : "AUGraphGetIndNode(_:_:_:)"
}
-->

# AUGraphGetIndNode(_:_:_:)

Gets the audio processing graph node at a given index.

```
func AUGraphGetIndNode(_ inGraph: AUGraph, _ inIndex: UInt32, _ outNode: UnsafeMutablePointer<AUNode>) -> OSStatus
```

## Parameters

`inGraph`

The `AUGraph` object to get the node from.

`inIndex`

The index of the node to get.

`outNode`

On output, the node at the specified index.

## Return Value

A result code.

## Discussion

By using AUGraphGetNodeCount in conjunction with this call, you can iterate through the nodes of an audio processing graph.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)