REST API DOCS
Client APIBlockchain

Blockchain. Regulatory Status by Address

GET
/backend/api/v1/ethereum/contract_regulatory_status/

Get Regulatory Status by Adrress.

Notice:

In the URL pass the network

  • Ethereum - ethereum

  • Polygon - polygon

  • Solana - solana

  • Algorand - algorand

  • Avalanche - avalanche

  • Arbitrum - arbitrum

  • Base - base

  • Optimism - optimism

  • BNB Chain - bsc

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Query Parameters

contract_address*string

Response Body

application/json

curl -X GET "https://example.com/backend/api/v1/ethereum/contract_regulatory_status/?contract_address=0xe1385fdd5ffb10081cd52c56584f25efa9084015"
{  "message": "success",  "code": 200,  "data": [    {      "offering_type": "",      "investor_eligibility": "",      "jurisdiction": "",      "transfer_agent": "Alpaca Securities",      "exchange_venue": ""    }  ]}