Calico API
API Reference
getCalico.com
API Reference
getCalico.com
  1. Providers
  • Overview
    • Use Cases
    • Getting started
    • Calico Connect
  • Platform API
    • Authentication
    • OAuth
      • Authorization Callback
    • Providers
      • Add providers
        POST
      • List providers
        GET
      • Remove providers
        DELETE
    • Assets
      • User assets
      • Refresh asset list
    • Transactions
      • Transactions
      • Refresh transactions
  • Resources
    • Response codes
    • FAQs
  • Schemas
    • Schemas
      • OpenAPIIntegrationResponse
      • CalicoErrorResponse
      • RefreshResponse
      • CryptoSourceId
      • OpenAPIAssetPosition
      • CryptoSourceCredentialAuthType
      • Add Crypto Source
      • Add Crypto Source Response
      • CryptoSourceDescriptor
      • OpenAPIDeleteCryptoSourceRequest
      • number
      • OpenAPIGetConsentURLForThirdPartyResponse
      • TransactionType
      • OpenAPITransactionCategorization
      • OpenAPIFeeItem
      • OpenAPIFeeObject
      • OpenAPICurrencyValue
      • Input only transactions
      • Transactions data
      • Send transaction data
      • Output only transaction data
      • Receive transaction data
      • Transactions with input and output
      • Uncategorized transaction data
API Reference
getCalico.com
API Reference
getCalico.com
  1. Providers

Add providers

https://api.getcalico.com/platform/v1
https://api.getcalico.com/platform/v1
https://api.getcalico.com/platform/v1
https://api.getcalico.com/platform/v1
POST
/provider
Add a new crypto source to your account

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************
or
Body Params application/jsonRequired

Examples

Responses

🟢200OK
application/json
The request was successful but the crypto sources may not have been added. Check the body of the response for status and if a redirect is needed.
Body

🟢201Created
🟠400Bad Request
Request Request Example
Shell
JavaScript
Java
Swift
cURL
curl --location --request POST 'https://api.getcalico.com/platform/v1/provider' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "providerId": "bitcoin",
    "providerAuthType": "wallet_address",
    "walletAddress": "1N1zF1eP5QGefi2DUPTfTL5SLmv7DivfNa",
    "displayLabel": "A wallet example"
}'
Response Response Example
200 - Example 1
{
    "added": true,
    "redirectUrl": "string"
}
Previous
Providers
Next
List providers
Built with