Skip to main content
GET
/
api
/
entities
/
{id}
/
transactions
Get transactions for a specific entity
curl --request GET \
  --url https://api.example.com/api/entities/{id}/transactions \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 123,
      "amount_usd": "<string>",
      "amount_eur": "<string>",
      "year": 123,
      "month": 123,
      "round_type": "<string>",
      "valuation_usd": "<string>",
      "investors": [
        {
          "id": 123,
          "name": "<string>",
          "is_lead": true
        }
      ]
    }
  ],
  "page": {
    "limit": 123,
    "offset": 123,
    "total": 123
  }
}

Authorizations

Authorization
string
header
required

Auth0 JWT access token

Path Parameters

id
string
required
Minimum string length: 1
Example:

"12345"

Query Parameters

limit
string

Number of results to return (1-500, default 100)

Example:

"100"

offset
string
Example:

"0"

Response

Entity transactions

data
object[]
required
page
object
required