For the complete documentation index, see llms.txt. This page is also available as Markdown.

Authentication

Each API request that you make to SeerBit must be authenticated using the bearer token authentication type.

Authentication

POST https://seerbitapi.com/api/v2/encrypt/keys

Request Body

Name
Type
Description

key*

string

consists of your privatekey and publickey seperated by a '.'

{
    "status": "SUCCESS",
    "data": {
    "code": "00",
    "EncryptedSecKey": {
	"encryptedKey": "SNt8kjeVjsdTG4lPlwg6sTvpVAay2RA7hoCEzHPkIQa+MNfDepx4VBr5JMgLb5Q5anq9XoN2pXU850bumqBWFVw1T1ZW5w8N+Sq/"
    },    
    "message": "Successful"
    }
}
{
  "message": "Bad Request",
  "error": "There has been a problem with reading or understanding the request."
}
{
  "error": "Not Found"
}
{
 "message": "Internal Server Error",
 "error": "PROCESSING"
}
curl --location --request OPTIONS 'https://seerbitapi.com/api/v2/encrypt/keys' \
--header 'Content-Type: application/json' \
--data-raw '{
	"key": "merchantPrivateKey.merchantPublicKey"
}'

Last updated