Type Alias AirdropsData

AirdropsData: {
    headers?: {
        x-cmc_pro_api_key?: string;
    };
    query?: {
        id?: string;
        limit?: string;
        slug?: string;
        start?: string;
        status?: string;
        symbol?: string;
    };
}

Type declaration

  • Optionalheaders?: {
        x-cmc_pro_api_key?: string;
    }
    • Optionalx-cmc_pro_api_key?: string

      Provide your API Key here

  • Optionalquery?: {
        id?: string;
        limit?: string;
        slug?: string;
        start?: string;
        status?: string;
        symbol?: string;
    }
    • Optionalid?: string

      Filtered airdrops by one cryptocurrency CoinMarketCap IDs. Example: 1

    • Optionallimit?: string

      Optionally specify the number of results to return. Use this parameter and the "start" parameter to determine your own pagination size.

    • Optionalslug?: string

      Alternatively filter airdrops by a cryptocurrency slug. Example: "bitcoin"

    • Optionalstart?: string

      Optionally offset the start (1-based index) of the paginated list of items to return.

    • Optionalstatus?: string

      What status of airdrops.

    • Optionalsymbol?: string

      Alternatively filter airdrops one cryptocurrency symbol. Example: "BTC".