> ## Documentation Index
> Fetch the complete documentation index at: https://superdoc-caio-pizzol-docs-ai-core-preset.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# footnotes.get

> Get detailed information about a specific footnote or endnote.

## Summary

Get detailed information about a specific footnote or endnote.

* Operation ID: `footnotes.get`
* API member path: `editor.doc.footnotes.get(...)`
* Mutates document: `no`
* Idempotency: `idempotent`
* Supports tracked mode: `no`
* Supports dry run: `no`
* Deterministic target resolution: `yes`

## Expected result

Returns a FootnoteInfo object with the note's type, display number, and content.

## Input fields

| Field               | Type                  | Required | Description            |
| ------------------- | --------------------- | -------- | ---------------------- |
| `target`            | object(kind="entity") | yes      |                        |
| `target.entityType` | `"footnote"`          | yes      | Constant: `"footnote"` |
| `target.kind`       | `"entity"`            | yes      | Constant: `"entity"`   |
| `target.noteId`     | string                | yes      |                        |

### Example request

```json theme={null}
{
  "target": {
    "entityType": "footnote",
    "kind": "entity",
    "noteId": "example"
  }
}
```

## Output fields

*No fields.*

### Example response

```json theme={null}
{}
```

## Pre-apply throws

* `TARGET_NOT_FOUND`
* `CAPABILITY_UNAVAILABLE`

## Non-applied failure codes

* None

## Raw schemas

<Accordion title="Raw input schema">
  ```json theme={null}
  {
    "additionalProperties": false,
    "properties": {
      "target": {
        "additionalProperties": false,
        "properties": {
          "entityType": {
            "const": "footnote"
          },
          "kind": {
            "const": "entity"
          },
          "noteId": {
            "type": "string"
          }
        },
        "required": [
          "kind",
          "entityType",
          "noteId"
        ],
        "type": "object"
      }
    },
    "required": [
      "target"
    ],
    "type": "object"
  }
  ```
</Accordion>

<Accordion title="Raw output schema">
  ```json theme={null}
  {
    "type": "object"
  }
  ```
</Accordion>
