curl --request POST \
--url https://api.example.com/v1/request-costs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"requestIds": [
"<string>"
]
}
'{
"requests": [
{
"requestId": "<string>",
"costNanoUsd": 123
}
]
}curl --request POST \
--url https://api.example.com/v1/request-costs \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"requestIds": [
"<string>"
]
}
'{
"requests": [
{
"requestId": "<string>",
"costNanoUsd": 123
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response
Show child attributes