---
updatedAt: 2026-05-07T14:21:27.000Z
---

Fetch the complete documentation index at: https://docs.noves.fi/llms.txt. Use this file to discover all available pages before exploring further.

# /daml/{chain}/txs/{party}

Returns a paginated list of transactions for the given party.
            
The results will be ordered by effective time (descending by default).
            
<b>Note:</b> For pagination, use the <i>nextPageUrl</i> link that will be returned as part of the output, or use the <i>cursor</i> parameter with the value from <i>nextCursor</i> in the previous response.

# OpenAPI definition

```json
{
  "openapi": "3.0.1",
  "info": {
    "title": "Translate API",
    "description": "Translate raw blockchain transactions into human-friendly, enriched form. Powered by Noves.",
    "version": "v1"
  },
  "servers": [
    {
      "url": "https://translate.noves.fi/"
    }
  ],
  "paths": {
    "/daml/{chain}/txs/{party}": {
      "get": {
        "tags": [
          "Daml"
        ],
        "summary": "/daml/{chain}/txs/{party}",
        "description": "Returns a paginated list of transactions for the given party.\r\n            \r\nThe results will be ordered by effective time (descending by default).\r\n            \r\n<b>Note:</b> For pagination, use the <i>nextPageUrl</i> link that will be returned as part of the output, or use the <i>cursor</i> parameter with the value from <i>nextCursor</i> in the previous response.",
        "parameters": [
          {
            "name": "chain",
            "in": "path",
            "description": "Name of the chain.",
            "required": true,
            "style": "simple",
            "schema": {
              "type": "string",
              "default": "canton",
              "example": "canton"
            }
          },
          {
            "name": "party",
            "in": "path",
            "description": "The party identifier to fetch updates for.",
            "required": true,
            "style": "simple",
            "schema": {
              "type": "string",
              "default": "noves-validator-1::1220dd5cc6e969cd7d7c11e339fbd07fab5f6fa1f999dc09339228d17299d9d68941",
              "example": "noves-validator-1::1220dd5cc6e969cd7d7c11e339fbd07fab5f6fa1f999dc09339228d17299d9d68941"
            }
          },
          {
            "name": "startTimestamp",
            "in": "query",
            "description": "Start timestamp to filter results by (Unix timestamp). Optional.",
            "style": "form",
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "endTimestamp",
            "in": "query",
            "description": "End timestamp to filter results by (Unix timestamp). Optional.",
            "style": "form",
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "pageSize",
            "in": "query",
            "description": "Number of updates to return per page. Default is 100, max is 100.",
            "style": "form",
            "schema": {
              "maximum": 100,
              "minimum": 1,
              "type": "integer",
              "format": "int32",
              "default": 100
            }
          },
          {
            "name": "sort",
            "in": "query",
            "description": "Sort direction: 'asc' for ascending or 'desc' for descending. Default is 'desc'.",
            "style": "form",
            "schema": {
              "type": "string",
              "default": "desc"
            }
          },
          {
            "name": "apiKey",
            "in": "header",
            "description": "API Key for Translate API. To generate an API Key, visit https://noves.fi/pricing",
            "required": true,
            "style": "simple",
            "schema": {
              "type": "string",
              "default": "demokey"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {}
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "text/plain": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              },
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              },
              "text/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "ProblemDetails": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "nullable": true
          },
          "title": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "detail": {
            "type": "string",
            "nullable": true
          },
          "instance": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": {}
      }
    }
  }
}
```