Metadata Requests
Metadata requests are available for crypto and stocks. The endpoints are:
- For stock metadata: GET request to
https://api.tickflow.io/v1/stocks/meta
. - For crypto metadata: GET request to
https://api.tickflow.io/v1/crypto/meta
.
Both endpoints take no request parameters in the path or body. These endpoints return information about the state of data on Tickflow. The response contains information like how many symbols are available in the database, when the data was last updated and what data fields are available for screening.
You can find additional information about these endpoints on the API Reference.
An example response for crypto metadata:
{
"status": 200,
"result": {
"last_updated": "2022-10-10T00:00:00",
"number_of_symbols": 128,
"fields_available": [
"addresses_count",
"addresses_sending_count",
"addresses_receiving_count",
"addresses_active_count",
"addresses_new_non_zero_count",
"mining_difficulty_mean",
"mining_difficulty_latest",
"mining_hash_rate_mean",
"transactions_count",
"transactions_rate",
"transactions_size_mean",
"transactions_size_sum",
"transactions_transfers_volume_sum",
"transactions_transfers_volume_mean",
"transactions_transfers_volume_median",
"fees_volume_sum",
"fees_volume_mean",
"fees_volume_median",
"indicators_sopr",
"blockchain_utxo_created_count",
"blockchain_utxo_spent_count",
"blockchain_utxo_created_value_sum",
"blockchain_utxo_spent_value_sum",
"blockchain_utxo_created_value_mean",
"blockchain_utxo_spent_value_mean",
"blockchain_utxo_created_value_median",
"blockchain_utxo_spent_value_median",
"blockchain_block_height",
"blockchain_block_count",
"blockchain_block_interval_mean",
"blockchain_block_interval_median",
"blockchain_block_size_mean",
"blockchain_block_size_sum",
"supply_current",
"market_price_usd",
"day_open_usd",
"day_high_usd",
"day_low_usd",
"day_close_usd",
"market_price_drawdown_relative",
"transactions_transfers_count",
"transactions_transfers_rate",
"fees_gas_used_sum",
"fees_gas_used_mean",
"fees_gas_used_median",
"fees_gas_limit_tx_mean",
"fees_gas_limit_tx_median",
"fees_gas_price_mean",
"fees_gas_price_median",
"eth2_staking_deposits_count",
"eth2_staking_volume_sum",
"eth2_staking_validators_count",
"eth2_staking_total_deposits_count",
"eth2_staking_total_volume_sum",
"eth2_staking_total_validators_count",
"eth2_staking_phase_0_goal_percent",
"protocols_uniswap_transaction_count",
"protocols_uniswap_liquidity_latest",
"protocols_uniswap_volume_sum"
]
}
}