Skip to main content
POST
/
api
/
blur
/
collections
/
loan-offers
/blur/collections/loan-offers
curl --request POST \
  --url https://api.anysite.io/api/blur/collections/loan-offers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "collection": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "@type": "BlurLoanOffer",
    "interest_rate_bips": 123,
    "amount": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
collection
string
required

Collection slug (e.g. 'azuki') or its on-chain contract address

Minimum string length: 1
Examples:

"azuki"

"0xed5af388653567af2f388e6224dc7c4b3241c544"

count
integer
required

Number of loan-offer levels to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

@type
string
default:BlurLoanOffer
interest_rate_bips
integer | null
amount
number | null