Global Parameters

All official Cryptosheets functions support a common way for querying, sorting, limiting, transforming and selecting specific data from integrated sources and providers called global parameters. They include _limit, _fields, _path, _count, _formatDates, _orderBy, _output, _distinct, _paths, _renameHeaders and _showHeaders.

TIP 👉 The most successful Cryptosheets users quickly learn to master the global parameters to save time and create the most relevant, useful & efficient datasets for their respective use cases

Examples

YouTube Video Examples

TIP 👉 By default all global parameters follow their physical, sequential order of operation as they are written & positioned within a given formula

  • DOES WORK: =CS.SYMBOLS("_fields","symbol,name","_renameHeaders","symbol:ticker")
  • DOES NOT WORK: =CS.SYMBOLS("_renameHeaders","symbol:ticker","_fields","symbol,name")
  • Combining or chaining multiple global parameters together is extremely powerful and can instantly transform complex nested JSON arrays into concise single cell data points. Keep in mind certain combinations and types of global parameters in tandem with larger data sets can create additional latency in your requests & formulas

Excel

_limit

_limit will return only the number of results you specify.

Usage

=CS.QUERYA("Cryptunit", "Earnings Auto", "_limit", "10")

IMG

_path

_path will query specific fields in a response using JMESPath query syntax.

Usage

=CS.QUERYA("Cryptunit", "Earnings Auto", "_path", "[].coins")

_paths

_paths will pull all possible paths in a JSON response, to be subsequently used in _path.

Usage

=CS.QUERYA("Cryptunit", "Earnings Auto", "_paths", "TRUE")

_fields

_fields will return only the fields (or column names) you specify.

Usage

=CS.QUERYA("Cryptunit", "Earnings Auto", "_fields", "hashrate,hashrate_auto")

TIP 👉 The fields you specify must match the fields (column headers) from the provider exactly

  • You can easily rename any field or multiple fields using the _renameHeaders global parameter in the formula
  • Example: "_renameHeaders","crypto_symbol:ticker,crypto_name:name"

IMG

_formatDates

_formatDates will attempt to format a date series based on momentjs formatting.

Usage

=CS.QUERYA("Cryptunit", "Earnings Auto", "_formatDates", "MM DD YYYY")

TIP 👉 For providers returning datetime columns without names or named as t or 0 etc

  • You can easily rename them using the _renameHeaders global parameter before the _formatDates global parameter in the formula
  • Example: "_renameHeaders","t:time","_formatDates","MM-DD-YYYY"

_count

_count will return the count of rows per the specified column header.

Usage

=CS.QUERYA("Cryptunit", "Earnings Auto", "_count", "MM DD YYYY")

IMG

_orderBy

_orderBy will order a column ascending or descending (prefixed with a '-')

Usage

=CS.QUERYA("Cryptunit", "Earnings Auto", "_orderBy", "coin_name,coin_algo")

TIP 👉 When using relative cell references in Excel & Google Sheets you'll most likely need to use a ' in front of the field your sorting by when sorting in descending order

  • Example: "_orderBy","-date" vs "_orderBy","A1" (where cell A1 is -date will need to be typed into cell A1 as '-date so the sheet doesn't think it's a formula)

IMG

_showHeaders

_showHeaders is a toggle to show or hide property values in a data response. In table formats, this typically involves hiding the first row.

Usage

=CS.QUERYA("Cryptunit", "Earnings Auto", "_showHeaders", "true")

_renameHeaders

_renameHeaders will rename headers based on specified native to alias mappings.

Usage

=CS.QUERYA("Cryptunit", "Earnings Auto", "_renameHeaders", "coin_name:name")

_distinct

Creates a duplicate-free version of the data, using SameValueZero for equality comparisons, in which only the first occurrence of each element is kept. The order of result values is determined by the order they occur in the initial data.

Usage

=CS.QUERYA("Cryptunit", "Earnings Auto", "_distinct", "algo_name")

IMG

Google Sheets

_limit

_limit will return only the number of results you specify.

Usage

=CSQUERYA("Cryptunit", "Earnings Auto", "_limit", "10")

TIP 👉 For endpoints that have their own native limits and/or limit parameters, in most cases the global _limit parameter will not override the native limit parameterization

_path

_path will query specific fields in a response using JMESPath query syntax.

Usage

=CSQUERYA("Cryptunit", "Earnings Auto", "_path", "[].coins")

_paths

_paths will pull all possible paths in a JSON response, to be subsequently used in _path.

Usage

=CSQUERYA("Cryptunit", "Earnings Auto", "_paths", "TRUE")

_fields

_fields will return only the fields (or column names) you specify.

Usage

=CSQUERYA("Cryptunit", "Earnings Auto", "_fields", "hashrate,hashrate_auto")

_formatDates

_formatDates will attempt to format a date series based on momentjs formatting.

Usage

=CSQUERYA("Cryptunit", "Earnings Auto", "_formatDates", "MM DD YYYY")

_count

_count will return the count of rows per the specified column header.

Usage

=CSQUERYA("Cryptunit", "Earnings Auto", "_count", "MM DD YYYY")

_orderBy

_orderBy will order a column ascending or descending (prefixed with a '-')

Usage

=CSQUERYA("Cryptunit", "Earnings Auto", "_orderBy", "coin_name,coin_algo")

_showHeaders

_showHeaders is a toggle to show or hide property values in a data response. In table formats, this typically involves hiding the first row.

Usage

=CSQUERYA("Cryptunit", "Earnings Auto", "_showHeaders", "true")

_renameHeaders

_renameHeaders will rename headers based on specified native to alias mappings.

Usage

=CSQUERYA("Cryptunit", "Earnings Auto", "_renameHeaders", "coin_name:name")

_distinct

Creates a duplicate-free version of the data, using SameValueZero for equality comparisons, in which only the first occurrence of each element is kept. The order of result values is determined by the order they occur in the initial data.

Usage

=CSQUERYA("Cryptunit", "Earnings Auto", "_distinct", "algo_name")

Date & Timestamp Formats for _formatDates

  • While you can technically specify any custom date time format (as long as your syntax is exactly correct) there are over 65 existing formats with abbreviated codes including many that match ISO standard and are incredibly easy to use.
  • Remember you can always use the _formatDates parameter with ANY API endpoint or UniConsole function inside the global parameters section of the API side panel consoles [IMG]
  • See a list of examples below & make sure to check out both the dedicated blog post and free template specifically for using the _formatDates global parameter.
parameterexampletypeunitdescription
MM-DD-YYYY hh:mm:ss.000datetime
YYYY-MM-DDdate
MM/DD/YYYYdate
MM-DD-YYYYdate
x1.36001E+12datetimenumberUnix Millisecond Timestamp
X1360013296datetimenumberUnix Timestamp
ZZ-0700 -0600 ... +0600 +0700timezone
Z-07:00 -06:00 ... +06:00 +07:00timezone
z or zzEST CST ... MST PSTtimezoneTime Zone (Note: as of 1.6.0, the z/zz format tokens have been deprecated from plain moment objects.)
SSSS ... SSSSSSSSS000[0..] 001[0..] ... 998[0..] 999[0..]timesecond
SSS000 001 ... 998 999timesecond
SS00 01 ... 98 99timesecond
S0 1 ... 8 9timesecondFractional Second
ss00 01 ... 58 59timesecond
s0 1 ... 58 59timesecondSecond
mm00 01 ... 58 59timeminute
m0 1 ... 58 59timeminuteMinute
kk01 02 ... 23 24timehour
k1 2 ... 23 24timehour
hh01 02 ... 11 12timehour
h1 2 ... 11 12timehour
HH00 01 ... 22 23timehour
H0 1 ... 22 23timehourHour
aam pmtime
AAM PMtimeAM/PM
GGGG1970 1971 ... 2029 2030dateyear
GG70 71 ... 29 30dateyearWeek Year (ISO)
gggg1970 1971 ... 2029 2030dateyear
gg70 71 ... 29 30dateyearWeek Year
Y1970 1971 ... 9999 +10000 +10001dateyear
YYYY1970 1971 ... 2029 2030dateyear
YY70 71 ... 29 30dateyearYear
WW01 02 ... 52 53dateweek
Wo1st 2nd ... 52nd 53rddateweek
W1 2 ... 52 53dateweekWeek of Year (ISO)
ww01 02 ... 52 53dateweek
wo1st 2nd ... 52nd 53rddateweek
w1 2 ... 52 53dateweekWeek of Year
E1 2 ... 6 7datedayDay of Week (ISO)
e0 1 ... 5 6datedayDay of Week (Locale)
ddddSunday Monday ... Friday Saturdaydateday
dddSun Mon ... Fri Satdateday
ddSu Mo ... Fr Sadateday
do0th 1st ... 5th 6thdateday
d0 1 ... 5 6datedayDay of Week
DDDD001 002 ... 364 365dateday
DDDo1st 2nd ... 364th 365thdateday
DDD1 2 ... 364 365datedayDay of Year
DD01 02 ... 30 31dateday
Do1st 2nd ... 30th 31stdateday
D1 2 ... 30 31datedayDay of Month
Qo1st 2nd 3rd 4thdatequarter
Q1 2 3 4datequarterQuarter
MMMMJanuary February ... November Decemberdatemonth
MMMJan Feb ... Nov Decdatemonth
MM01 02 ... 11 12datemonth
Mo1st 2nd ... 11th 12thdatemonth
M1 2 ... 11 12datemonthMonth
llllThu, Sep 4, 1986 8:30 PMdatetime
LLLLThursday, September 4, 1986 8:30 PMdatetimeMonth name, day of month, day of week, year, time
lll31659.85417datetime
LLL31659.85417datetimeMonth name, day of month, year, time
ll31659date
LL31659dateMonth name, day of month, year
l31659date
L31659dateMonth numeral, day of month, year
LTS0.854456019datetimeTime with seconds
LT8:30:00 PMdatetimeTime

Advanced Users

The 4th primary module of the Cryptosheets API console is called the Output Inspector. The Inspector interface uses a language called JMESPath that provides powerful tools allowing any Cryptosheets user to easily search, filter, inspect, slice, merge, extract, flatten, create nested functions, visualize the transformed output and much more -- with ANY Cryptosheets data response! The Output Inspector is also a critical part of working with and using the _path global parameter.

For additional guidance, tutorials, reference and other resources on using the JMESPath Query builder Data Wizard, please see the links below.

*Private training sessions and group teach ins are available for premium tier subscriptions and corporate or enterprise accounts, please contacts us through the Intercom support chat with any related inquiry.