List external wallet configs
/workspaces/{id}/external-wallet-configsBearer tokenGet all external wallet provider configurations for a workspace. These configs determine which wallet providers (MetaMask, WalletConnect, etc.) customers can use. **Requires:** Workspace access
Path parameters
- idstring (uuid)required
Workspace ID
Responses
200External wallet configs retrieved successfully
configsarray of ExternalWalletConfig
array of ExternalWalletConfig- idstring (uuid)
- workspaceIdstring (uuid)
- providerTypeenum"METAMASK" · "WALLET_CONNECT" · "COINBASE_WALLET" · "LEDGER"
- isEnabledboolean
allowedNetworksarray of string
array of stringstringallowedTemplateIdsarray of string (uuid)
array of string (uuid)string (uuid)configobject
- infuraApiKeystring
- projectIdstring
- appNamestring
- appLogoUrlstring
- createdAtstring (date-time)
- updatedAtstring (date-time)
{
"configs": [
{
"id": "9f8b7c6d-5e4f-4a3b-2c1d-0e9f8a7b6c5d",
"workspaceId": "9f8b7c6d-5e4f-4a3b-2c1d-0e9f8a7b6c5d",
"providerType": "METAMASK",
"isEnabled": true,
"allowedNetworks": [
"BASE_SEPOLIA",
"ETHEREUM_SEPOLIA"
],
"allowedTemplateIds": [
"9f8b7c6d-5e4f-4a3b-2c1d-0e9f8a7b6c5d"
],
"config": {
"infuraApiKey": "string",
"projectId": "string",
"appName": "string",
"appLogoUrl": "string"
},
"createdAt": "2026-01-15T12:00:00.000Z",
"updatedAt": "2026-01-15T12:00:00.000Z"
}
]
}401Unauthorized - missing or invalid authentication
- successenumrequiredfalse
Always false for error responses
dataobject
Always null for error responses
objectAlways null for error responses
errorErrorrequired
- codestringrequired
Machine-readable error code
- messagestringrequired
Human-readable error message
- statusCodeintegerrequired
HTTP status code
detailsobject
Additional error details (optional)
objectAdditional error details (optional)
metaMetarequired
- timestampstring (date-time)required
Response timestamp
- requestIdstringrequired
Unique request identifier for debugging
paginationPagination
- pageintegerrequired
Current page number (1-indexed)
- limitintegerrequired
Items per page
- totalintegerrequired
Total number of items
- totalPagesintegerrequired
Total number of pages
{
"success": false,
"data": null,
"error": {
"code": "UNAUTHORIZED",
"message": "Authentication required",
"statusCode": 401
},
"meta": {
"timestamp": "2026-02-24T12:00:00.000Z",
"requestId": "550e8400-e29b-41d4-a716-446655440000"
}
}404Resource not found
- successenumrequiredfalse
Always false for error responses
dataobject
Always null for error responses
objectAlways null for error responses
errorErrorrequired
- codestringrequired
Machine-readable error code
- messagestringrequired
Human-readable error message
- statusCodeintegerrequired
HTTP status code
detailsobject
Additional error details (optional)
objectAdditional error details (optional)
metaMetarequired
- timestampstring (date-time)required
Response timestamp
- requestIdstringrequired
Unique request identifier for debugging
paginationPagination
- pageintegerrequired
Current page number (1-indexed)
- limitintegerrequired
Items per page
- totalintegerrequired
Total number of items
- totalPagesintegerrequired
Total number of pages
{
"success": false,
"data": null,
"error": {
"code": "NOT_FOUND",
"message": "Resource not found",
"statusCode": 404
},
"meta": {
"timestamp": "2026-02-24T12:00:00.000Z",
"requestId": "550e8400-e29b-41d4-a716-446655440000"
}
}500Internal server error
- successenumrequiredfalse
Always false for error responses
dataobject
Always null for error responses
objectAlways null for error responses
errorErrorrequired
- codestringrequired
Machine-readable error code
- messagestringrequired
Human-readable error message
- statusCodeintegerrequired
HTTP status code
detailsobject
Additional error details (optional)
objectAdditional error details (optional)
metaMetarequired
- timestampstring (date-time)required
Response timestamp
- requestIdstringrequired
Unique request identifier for debugging
paginationPagination
- pageintegerrequired
Current page number (1-indexed)
- limitintegerrequired
Items per page
- totalintegerrequired
Total number of items
- totalPagesintegerrequired
Total number of pages
{
"success": false,
"data": null,
"error": {
"code": "INTERNAL_ERROR",
"message": "An unexpected error occurred",
"statusCode": 500
},
"meta": {
"timestamp": "2026-02-24T12:00:00.000Z",
"requestId": "550e8400-e29b-41d4-a716-446655440000"
}
}curl https://core-staging.coinbax.com/api/v1/workspaces/<id>/external-wallet-configs \
-H "Authorization: Bearer $ACCESS_TOKEN"const response = await fetch('https://core-staging.coinbax.com/api/v1/workspaces/<id>/external-wallet-configs', {
headers: {
'Authorization': `Bearer ${process.env.ACCESS_TOKEN}`,
},
});
const result = await response.json();