REST API DOCS

Get Symbol List

GET
/backend/api/v1/asset/user_assets/

Returns a list of symbols for the authenticated user. Optionally filter by ticker or request linked symbols only. When the symbol query parameter is provided, the response includes the DORRS Transparency Score (DTS) and Smart Contract Governance Score for the matching symbol when score data is available.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Query Parameters

symbol?string

Filter by ticker symbol and return available DTS/governance score data for that symbol.

linked?boolean

If true, return only symbols linked to an underlying symbol

limit?integer

Maximum number of records to return

offset?integer

Number of records to skip before returning results

Response Body

application/json

curl -X GET "https://example.com/backend/api/v1/asset/user_assets/?symbol=HOODX&linked=false"
{  "message": "success",  "code": 200,  "data": [    {      "id": 1,      "reason_for_entry": "New Ticker Symbol",      "symbol": "USDT",      "symbol_suffix": "",      "cusip": "925524BF6",      "isin": "US9255247080",      "dsin": "DSIN123",      "primary_ats": "ATS-1",      "new_primary_ats": "",      "primary_market": "",      "transfer_agent": "Agent Name",      "custodian": "Custodian Name",      "market_sector": "Information Technology",      "market_sector_category": "",      "lot_size": 1,      "fractional_lot_size": 0.000001,      "mvp": 0.01,      "country": "US",      "security_name": "Test Security",      "fifth_character_identifier": "",      "digital_asset_category": "Financial Digital Assets",      "instrument_type": "Security Token (Native)",      "alternative_asset_category": "",      "alternative_asset_subcategory": "",      "exempted_offerings": "",      "sec_token_classification": "Tokenized Security",      "issuer_name": "Example Corp",      "issuer_type": "Corporation",      "tokenization_platform": "Example Platform",      "legal_claim_entity": "",      "underpinning_asset_value": "None",      "reference_asset": "",      "fungibility_type": "Fungible",      "market_dynamics_description": "",      "rights_type": "Monetary Claim",      "enforceability_type": "Legally Enforceable",      "redeemability_type": "Non-Redeemable",      "redemption_asset_type": "",      "nature_of_record": "Digital Native",      "status": "Active",      "asset_status": "Active",      "instrument_class": "Equity",      "equity_type": "Listed",      "stablecoin_type": "",      "debt_instrument": "",      "face_value_par_value": null,      "coupon_interest_rate": null,      "maturity_date": null,      "payment_frequency": "",      "issue_date": "2024-01-15",      "settlement_method": "On-Chain",      "custody_arrangement": "Third-Party",      "associated_network": [        "Ethereum"      ],      "backing_collateral_details": "Cash",      "backing_collateral_details_text": "",      "governance_notes": "",      "notes": "",      "is_approved": true,      "approved_by": "admin@dorrs.io",      "approved_date_time": "2024-01-16T09:00:00.000000Z",      "edgar_cik": "0001234567",      "fill_out_percentage": 75.5,      "version": "1.0",      "created_by": "user@example.com",      "created_date_time": "2024-01-15",      "created_at": "2024-01-15T10:00:00.000000Z",      "updated_at": "2024-06-22T10:00:00.000000Z",      "changed_by": "",      "changed_date_time": "",      "deleted_by": "",      "deleted_date_time": "",      "company_profile": null,      "company_profile_status": "",      "symbol_id": null,      "master_symbol_name": null,      "spv_name": "",      "is_blockchain": true,      "is_instrument_platform": false,      "tokens": {},      "commodity_type": "",      "commodity_subcategory": "",      "algorand_last_sale_application_id": null,      "algorand_last_sale_application_id_link": null,      "algorand_best_bid_and_best_offer_application_id": null,      "algorand_best_bid_and_best_offer_application_id_link": null,      "score": {        "total": 0.66,        "rating": "C",        "blockchain": 0.8,        "disclosure": 0.93,        "regulatory": 0.7,        "governance": {          "available": true,          "total": 26,          "classification": "Moderately Controlled",          "custodial_backed": false        }      }    }  ]}