Skip to main content
GET
/
resources
/
weights
Get the weights
curl --request GET \
  --url https://api.mycreditapp.ai/v1-beta/resources/weights \
  --header 'Authorization: Bearer <token>'
[
  {
    "weight_type": "<string>",
    "value": 123
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication using a JWT token. Provide a valid access token. Authorization header format: Authorization: Bearer <token>.

Response

Successful Response

weight_type
string
required

Type or category of the weight being measured

Required string length: 1 - 50
Examples:

"operating_cashflow_ratio"

"free_cashflow"

"free_cashflow_margin"

value
number
required

Numeric value of the weight, typically represented as a fraction or percentage

Examples:

0.15

0.1

0.1

0.1