List all projects
Get Started
Essentials
API Reference
- GETList all assets
- POSTCreate a new asset
- GETGet details of a specific asset
- PUTRename an existing asset
- DELDelete an asset
- GETList all projects
- POSTCreate a new project
- GETGet details of a specific project
- PUTRename an existing project
- GETList transactions for a wallet
- POSTRun a new transaction between two wallets
- POSTSeed a new transaction to a system wallet
- GETGet user plan
- POSTCreate a new wallet
- GETList customer wallets
- PUTChange wallet status
- GETList system wallets
- GETGet wallet details
- POSTPost webhook
List all projects
GET
/
projects
curl --request GET \
--url http://localhost:4000/projects \
--header 'api_key: <api_key>'
{
"pagination": {
"limit": 123,
"page": 123,
"total": 123,
"totalPages": 123
},
"projects": [
{
"asset_id": "<string>",
"created_at": "<string>",
"exchangeRate": 123,
"id": 123,
"metadata": {},
"name": "<string>",
"owner": "<string>",
"supportExchangeRate": true,
"type": "loyalty",
"updated_at": "<string>"
}
]
}
Headers
Response
200
application/json
Success response
Available options:
loyalty
, virtual
curl --request GET \
--url http://localhost:4000/projects \
--header 'api_key: <api_key>'
{
"pagination": {
"limit": 123,
"page": 123,
"total": 123,
"totalPages": 123
},
"projects": [
{
"asset_id": "<string>",
"created_at": "<string>",
"exchangeRate": 123,
"id": 123,
"metadata": {},
"name": "<string>",
"owner": "<string>",
"supportExchangeRate": true,
"type": "loyalty",
"updated_at": "<string>"
}
]
}