Retrieve note

Retrieves the full details of a specific note by its ID.

The response includes all fields available in your workspace for that note type (e.g. simple, conversation). You can use this to display the entire note content, including metadata such as owner, tags, and relationships.

Use the /v2/notes/configuration endpoint to discover which fields are available for your workspace.

Code examples

  • Replace <note-id> with the ID of the note you want to fetch.
  • Replace <your-token> with a valid API token.

Retrieve a specific note by ID:

curl -X GET "https://api.productboard.com/v2/notes/<note-id>" \
  -H "Authorization: Bearer <your-token>"
Language
Credentials
Header
Click Try It! to start a request and see the response here!