LogoLogo
  • Welcome to Alterscope
  • INTRODUCTION
    • What is DefAI?
    • What are AI Agents?
    • What is Alteron?
  • How to get started
    • Sign Up
    • Agent Framework
    • Agent Signals
      • APY Changes
      • Arbitrage Opportunities
      • Centralised Exchange Movements
      • Cyvers Security Alerts
      • DAO Proposals
      • Ecosystem In/Out-Flows
      • ERC20 Price Movements
      • Function Calls
      • Gas Fee Spikes
      • Protocol Health Alerts
      • Simple Moving Averages
      • Stablecoin Price Deviations
      • Token Transfers
      • Wallet Health Factors
      • Whale Activity
    • Agent Network
  • Data Feeds
    • API Endpoint
    • Authentication
    • API Reference
      • Development
      • Development Score
      • Security
      • Liquidity
        • Lending Protocols
        • Decentralized Exchange Protocols
        • Stablecoin Protocols
        • Derivative Protocols
        • Liquid Staking Protocols
      • Community
      • Governance
      • Governance Score
      • Blockchain
      • Oracles
      • Overall Score
      • Tokenomics
      • Tokenomics Score
      • Restaking
    • Swagger API Specification
    • Install & run cURL on Windows/MacOSX/Linux
  • Dashboard Functionalities
    • Market Insights
    • Custom API Creation (Nexus)
    • Custom Dashboards (Eagle Eye)
Powered by GitBook
On this page
  • What is cURL?
  • Windows Installation
  • MacOSX Installation
  • Linux installation
  1. Data Feeds

Install & run cURL on Windows/MacOSX/Linux

PreviousRestakingNextMarket Insights

Last updated 1 year ago

What is cURL?

cURL is a tool that lets you transfer data to/from a server using various protocols. In this case, the curl command will establish a communication to GET data from Alterscope server over HTTP and HTTPS.

Below you will find the step-by-step guide to installing cURL in Windows, MacOSX and Linux.

Windows Installation

1. Enter and access the URL to download the wizard.

2. Then, on the "Select Operating System" section, select Windows. Then, continue selecting the parameters required based on your version of Windows.

3. Once you've finished the on-screen steps, download the ZIP file generated. To download it, simply press "Download".

4. Next, open the .zip file and enter to the folder called "src". Inside the src folder you will find the curl executable file. At this point, you need to copy the executable file and paste it inside a local folder on your PC to be able to run the curl.

NOTE: To get a better understanding of the following steps, let's assume the executable file is located inside a folder named "programs".

6. From the Command Prompt, enter to the location where the executable file was pasted. To enter to the folder you need to use the command following the location of the folder which contains the executable file as you can see below.

cd programs

Expected location to be shown

C:\Users\{your_user}\programs>

7. To verify if you are able to run curl commands with the command prompt, test its functionality by executing the command below:

curl --helpĀ 

At this point, you should receive all the help info related to the curl command.

Now you are able to use cURL from your Windows PC!

MacOSX Installation

1. Access the computer's terminal.

2. Run the command below in the terminal:

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" < /dev/null 2> /dev/null

3. If a password is required after running the command, please enter your Mac's user password to continue. Then, wait until the installation finishes.

4. Run the command below in the terminal:

brew install curl

Now you are able to use cURL from your Mac !

Linux installation

1. Access the computer's terminal.

2. Run the command below in the terminal:

sudo apt-get install curl

3. If a password is required after running the command, please enter your computers' user password to continue. Then, wait until the installation finishes.

Now you are able to use cURL from your Linux system!

command-line
https://curl.haxx.se/
curl executable
cd