Retrieves a list of all available financial assets, sorted by asset class.

Example

curl --request GET \
     --url 'https://api.joinzeed.com/content/assets' \
     --header 'Accept: application/json' \
     --header 'x-api-key: [your api key]'
{
    "data": {
        "items": [
            {
                "assetClass": "Stocks",
                "finassets": [
                    {
                        "symbol": "0YXG"
                    },
                    {
                        "symbol": "AAPL"
                    },
                    {
                        "symbol": "AMZN"
                    },
                  	{
                    		...
                    }
                ]
            },
            {
                "assetClass": "Crypto",
                "finassets": [
                    {
                        "symbol": "avalanche-2"
                    },
                    {
                        "symbol": "axie-infinity"
                    },
                    {
                        "symbol": "basic-attention-token"
                    },
                  	{
                    		...
                    }
                ]
            }
        ]
    }
}
Language
Authorization
Header
Click Try It! to start a request and see the response here!