Skip to main content
GET
/
rwa
/
stocks
Discover tokenized real-world asset stocks
curl --request GET \
  --url https://api.fcontext.com/rwa/stocks \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "data": [
    {
      "id": "rwa_stock_001",
      "symbol": "bAAPL",
      "name": "Backed Apple",
      "assetType": "EQUITY",
      "status": "ACTIVE",
      "tickerRegion": "AAPL.US",
      "description": "Tokenized representation of Apple Inc. stock",
      "totalSupply": "1000000.00",
      "currentPrice": "185.50",
      "website": "https://backed.fi",
      "logoUrl": "https://backed.fi/assets/apple-logo.png",
      "deployments": [
        {
          "id": "deploy_001",
          "contractAddress": "0x1234567890abcdef1234567890abcdef12345678",
          "network": "ETHEREUM",
          "isActive": true,
          "isVerified": true
        }
      ],
      "createdAt": "2023-01-01T00:00:00Z",
      "updatedAt": "2024-01-02T12:00:00Z"
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 20,
    "total": 156,
    "hasNext": true
  },
  "message": "RWA stocks retrieved successfully",
  "timestamp": "2024-01-02T12:00:00Z"
}

Authorizations

X-API-Key
string
header
required

Query Parameters

symbol
string

Filter by RWA token symbol (e.g., bAAPL)

Example:

"bAAPL"

tickerRegion
string

Filter by ticker region (e.g., AAPL.US)

Example:

"AAPL.US"

assetType
enum<string>

Filter by asset type

Available options:
BOND,
EQUITY,
REAL_ESTATE,
COMMODITY,
TREASURY,
CORPORATE_BOND,
GOVERNMENT_BOND,
ETF,
INDEX_FUND,
OTHER
Example:

"EQUITY"

status
enum<string>

Filter by asset status

Available options:
ACTIVE,
INACTIVE,
PAUSED,
DEPRECATED
Example:

"ACTIVE"

Search in name, symbol, or ticker region

Example:

"Apple"

includeDeployments
string
default:false

Include deployment information in response

Example:

"true"

page
integer
default:1

Page number, starting from 1

Required range: -9007199254740991 <= x <= 9007199254740991
Example:

1

page_size
integer
default:10

Number of items per page, range 1-100

Required range: -9007199254740991 <= x <= 9007199254740991
Example:

10

Response

RWA tokenized stocks retrieved successfully with blockchain deployment data

Successful response for RWA stock list

success
boolean
required
data
object[]
required

Array of RWA stocks

pagination
object
required

Pagination information