Core Resources
- Tokens
- Customers
- Offerings
- Offering Purchase Intents
- Transactions
- Holders
- Organizations
- Wallets
- Offers
Offerings
List all offerings
Get all offerings
GET
/
offering
Copy
curl --request GET \
--url https://api.decentri.org/offering
Copy
[
{
"offeringId": "cmVhY3Rpb24vMTIzNA75",
"title": "Decentri Fund",
"subtitle": "Decentralized investment fund",
"description": "A decentralized investment fund",
"token": {
"name": "ACME Token",
"symbol": "ACME",
"address": "0xc0ffee254729296a45a3885639AC7E10F9d54979",
"decimals": 18,
"owner": "0x999999cf1046e68e36E1aA2E0E07105eDDD1f08E",
"isPaused": false,
"createdAt": "2023-11-07T05:31:56Z"
},
"imageUrl": "https://example.com/image.png",
"type": "Equity",
"pricePerToken": 100,
"offeringPeriod": {
"startDate": "2021-09-01T00:00:00Z",
"endDate": "2021-09-30T23:59:59Z"
},
"investmentLimits": {
"minInvestment": 1000,
"maxInvestment": 10000,
"hardCap": 100000,
"softCap": 100000,
"currentlyInvested": 1000
},
"participants": 123
}
]
Query Parameters
Response
200
application/json
The offerings have been successfully retrieved
The response is of type object[]
.
Copy
curl --request GET \
--url https://api.decentri.org/offering
Copy
[
{
"offeringId": "cmVhY3Rpb24vMTIzNA75",
"title": "Decentri Fund",
"subtitle": "Decentralized investment fund",
"description": "A decentralized investment fund",
"token": {
"name": "ACME Token",
"symbol": "ACME",
"address": "0xc0ffee254729296a45a3885639AC7E10F9d54979",
"decimals": 18,
"owner": "0x999999cf1046e68e36E1aA2E0E07105eDDD1f08E",
"isPaused": false,
"createdAt": "2023-11-07T05:31:56Z"
},
"imageUrl": "https://example.com/image.png",
"type": "Equity",
"pricePerToken": 100,
"offeringPeriod": {
"startDate": "2021-09-01T00:00:00Z",
"endDate": "2021-09-30T23:59:59Z"
},
"investmentLimits": {
"minInvestment": 1000,
"maxInvestment": 10000,
"hardCap": 100000,
"softCap": 100000,
"currentlyInvested": 1000
},
"participants": 123
}
]
Assistant
Responses are generated using AI and may contain mistakes.