{% extends "base.html" %} {% block content %}
Requests are made using standard HTTP and responses are returned in JSON format.
/api/1/convert/wow-usd
WOW to USD conversion. Data from TradeOgre and CoinMarketCap.
Example:curl -vvX GET 'https://funding.wownero.com/api/1/convert/wow-usd?amount=1000'Response:
{"usd": 6.7}
/api/1/proposals
Proposal listing.
Parameters:status
: the proposal status, from 0 to 5. Default is 1.limit
: limit results. Default is 20.offset
: offset results. Default is 0.curl -vvX GET 'https://funding.wownero.com/api/1/proposals?offset=0&limit=1&status=2'Response:
{ "data": [ { "id": 15, "user": "dsc", "headline": "[Bounty] Memes", "content": "### markdown Content", "category": "marketing", "addr_donation": "WW3LcKRi3vJGSn11256Q819gExLtfsR3DZeGneu7K55QeeS4YcKMaDAHZ16hRM2gmJT7pVRiTGesjCsJUNAJPTn42rnh7wZEa", "date_posted": "Jul 09 2018 21:59:26", "date_posted_epoch": "1531173566", "funded_pct": 33.3333333333333, "funds_target": 15000.0, "status": 2 } ] }
/api/1/wow/supply
The current total supply of WOW.
Example:curl -vvX GET 'https://funding.wownero.com/api/1/wow/supply'Response:
{ "data": 10456897.573388882 }