GET
/
custom
/
org
/
{organization_uuid}
/
optimized_proposal
/
{proposal_uuid}
curl --request GET \
  --url https://api.tilt.io/custom/org/{organization_uuid}/optimized_proposal/{proposal_uuid}/ \
  --header 'X-Api-Key: <api-key>'
{
  "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "created": "2023-11-07T05:31:56Z",
  "client": {
    "external_id": "<string>",
    "created": "2023-11-07T05:31:56Z"
  },
  "status": "pending",
  "weights": [
    {
      "ticker": "<string>",
      "weight": "<string>"
    }
  ],
  "orders": [
    {
      "ticker": "<string>",
      "amount": "<string>",
      "type": "qty",
      "reason": "removed_from_target",
      "existing_quantity": "<string>",
      "existing_weight": "<string>",
      "existing_market_value": "<string>",
      "target_weight": "<string>",
      "tax_lots": [
        {
          "cost_basis": "<string>",
          "quantity": "<string>",
          "trade_date": "2023-12-25",
          "gain": "<string>"
        }
      ]
    }
  ],
  "performance": {
    "backtest_results": "<any>",
    "base_backtest_results": "<any>",
    "annualized_return": "<string>",
    "annualized_volatility": "<string>",
    "max_drawdown": "<string>",
    "information_ratio": "<string>",
    "sharpe_ratio": "<string>"
  }
}

Authorizations

X-Api-Key
string
header
required

Path Parameters

organization_uuid
string
required
proposal_uuid
string
required

Response

200 - application/json

The response is of type object.