curl --request GET \
--url https://api.example.com/offering[
{
"offeringId": "cmVhY3Rpb24vMTIzNA75",
"title": "Decentri Fund",
"token": {
"name": "ACME Token",
"symbol": "ACME",
"address": "0xc0ffee254729296a45a3885639AC7E10F9d54979",
"decimals": 18,
"isPaused": false,
"totalSupply": 123,
"createdAt": "2023-11-07T05:31:56Z"
},
"pricePerToken": 100,
"offeringPeriod": {
"startDate": "2021-09-01T00:00:00Z",
"endDate": "2021-09-30T23:59:59Z"
},
"fundingLimits": {
"raised": 1000,
"minPayableAmount": 1000,
"maxPayableAmount": 10000,
"hardCap": 100000,
"softCap": 100000
},
"participants": 123,
"organizationId": "<string>",
"subtitle": "Decentralized fund for the future",
"description": "This fund is built on decentralization principles, offering greater transparency and autonomy to participants.",
"imageUrl": "https://example.com/image.png",
"type": "Equity"
}
]Get all offerings
curl --request GET \
--url https://api.example.com/offering[
{
"offeringId": "cmVhY3Rpb24vMTIzNA75",
"title": "Decentri Fund",
"token": {
"name": "ACME Token",
"symbol": "ACME",
"address": "0xc0ffee254729296a45a3885639AC7E10F9d54979",
"decimals": 18,
"isPaused": false,
"totalSupply": 123,
"createdAt": "2023-11-07T05:31:56Z"
},
"pricePerToken": 100,
"offeringPeriod": {
"startDate": "2021-09-01T00:00:00Z",
"endDate": "2021-09-30T23:59:59Z"
},
"fundingLimits": {
"raised": 1000,
"minPayableAmount": 1000,
"maxPayableAmount": 10000,
"hardCap": 100000,
"softCap": 100000
},
"participants": 123,
"organizationId": "<string>",
"subtitle": "Decentralized fund for the future",
"description": "This fund is built on decentralization principles, offering greater transparency and autonomy to participants.",
"imageUrl": "https://example.com/image.png",
"type": "Equity"
}
]The offerings have been successfully retrieved
The unique identifier for the offering
"cmVhY3Rpb24vMTIzNA75"
The title or name of the offering
"Decentri Fund"
The token of the offering
Show child attributes
The price per token
100
The period during which the offering is available
Show child attributes
The limits on contributions or participation in the offering
Show child attributes
The current number of participants in the offering
The ID of the organization that owns the offering
A brief subtitle or tagline for the offering
"Decentralized fund for the future"
A detailed description of the offering
"This fund is built on decentralization principles, offering greater transparency and autonomy to participants."
The URL of the image
"https://example.com/image.png"
The type of the offering
"Equity"