jrc-node server api spec

Default

addBlock

Attempt to add a new block to the blockchain


/blockchain/addblock

Usage and SDK Samples

curl -X POST\
-H "Accept: application/json"\
-H "Content-Type: application/json"\
"//blockchain/addblock"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        BlockModel body = ; // BlockModel | Block to be added
        try {
            Object result = apiInstance.addBlock(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#addBlock");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        BlockModel body = ; // BlockModel | Block to be added
        try {
            Object result = apiInstance.addBlock(body);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#addBlock");
            e.printStackTrace();
        }
    }
}
BlockModel *body = ; // Block to be added

DefaultApi *apiInstance = [[DefaultApi alloc] init];

// Attempt to add a new block to the blockchain
[apiInstance addBlockWith:body
              completionHandler: ^(Object output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var JrcNodeServerApiSpec = require('jrc_node_server_api_spec');

var api = new JrcNodeServerApiSpec.DefaultApi()
var body = ; // {{BlockModel}} Block to be added

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.addBlock(body, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class addBlockExample
    {
        public void main()
        {

            var apiInstance = new DefaultApi();
            var body = new BlockModel(); // BlockModel | Block to be added

            try
            {
                // Attempt to add a new block to the blockchain
                Object result = apiInstance.addBlock(body);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.addBlock: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();
$body = ; // BlockModel | Block to be added

try {
    $result = $api_instance->addBlock($body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->addBlock: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();
my $body = WWW::SwaggerClient::Object::BlockModel->new(); # BlockModel | Block to be added

eval { 
    my $result = $api_instance->addBlock(body => $body);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->addBlock: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client.DefaultApi()
body =  # BlockModel | Block to be added

try: 
    # Attempt to add a new block to the blockchain
    api_response = api_instance.add_block(body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->addBlock: %s\n" % e)

Parameters

Body parameters
Name Description
body *

Responses

Status: 200 - successful operation

Status: 400 - block is not valid


getBlockchain

Get the full blockchain


/blockchain

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"//blockchain"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        try {
            Blockchain result = apiInstance.getBlockchain();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#getBlockchain");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        try {
            Blockchain result = apiInstance.getBlockchain();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#getBlockchain");
            e.printStackTrace();
        }
    }
}

DefaultApi *apiInstance = [[DefaultApi alloc] init];

// Get the full blockchain
[apiInstance getBlockchainWithCompletionHandler: 
              ^(Blockchain output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var JrcNodeServerApiSpec = require('jrc_node_server_api_spec');

var api = new JrcNodeServerApiSpec.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getBlockchain(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class getBlockchainExample
    {
        public void main()
        {

            var apiInstance = new DefaultApi();

            try
            {
                // Get the full blockchain
                Blockchain result = apiInstance.getBlockchain();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.getBlockchain: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();

try {
    $result = $api_instance->getBlockchain();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->getBlockchain: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();

eval { 
    my $result = $api_instance->getBlockchain();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->getBlockchain: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client.DefaultApi()

try: 
    # Get the full blockchain
    api_response = api_instance.get_blockchain()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->getBlockchain: %s\n" % e)

Parameters

Responses

Status: 200 - successful operation


getBlockchainSize

Get the blockchain length


/blockchain/size

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"//blockchain/size"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        try {
            'Integer' result = apiInstance.getBlockchainSize();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#getBlockchainSize");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        try {
            'Integer' result = apiInstance.getBlockchainSize();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#getBlockchainSize");
            e.printStackTrace();
        }
    }
}

DefaultApi *apiInstance = [[DefaultApi alloc] init];

// Get the blockchain length
[apiInstance getBlockchainSizeWithCompletionHandler: 
              ^('Integer' output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var JrcNodeServerApiSpec = require('jrc_node_server_api_spec');

var api = new JrcNodeServerApiSpec.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getBlockchainSize(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class getBlockchainSizeExample
    {
        public void main()
        {

            var apiInstance = new DefaultApi();

            try
            {
                // Get the blockchain length
                'Integer' result = apiInstance.getBlockchainSize();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.getBlockchainSize: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();

try {
    $result = $api_instance->getBlockchainSize();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->getBlockchainSize: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();

eval { 
    my $result = $api_instance->getBlockchainSize();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->getBlockchainSize: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client.DefaultApi()

try: 
    # Get the blockchain length
    api_response = api_instance.get_blockchain_size()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->getBlockchainSize: %s\n" % e)

Parameters

Responses

Status: 200 - successful operation


getLastBlock

Get the last block in the blockchain


/blockchain/lastblock

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"//blockchain/lastblock"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        try {
            BlockModel result = apiInstance.getLastBlock();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#getLastBlock");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        try {
            BlockModel result = apiInstance.getLastBlock();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#getLastBlock");
            e.printStackTrace();
        }
    }
}

DefaultApi *apiInstance = [[DefaultApi alloc] init];

// Get the last block in the blockchain
[apiInstance getLastBlockWithCompletionHandler: 
              ^(BlockModel output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var JrcNodeServerApiSpec = require('jrc_node_server_api_spec');

var api = new JrcNodeServerApiSpec.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getLastBlock(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class getLastBlockExample
    {
        public void main()
        {

            var apiInstance = new DefaultApi();

            try
            {
                // Get the last block in the blockchain
                BlockModel result = apiInstance.getLastBlock();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.getLastBlock: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();

try {
    $result = $api_instance->getLastBlock();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->getLastBlock: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();

eval { 
    my $result = $api_instance->getLastBlock();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->getLastBlock: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client.DefaultApi()

try: 
    # Get the last block in the blockchain
    api_response = api_instance.get_last_block()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->getLastBlock: %s\n" % e)

Parameters

Responses

Status: 200 - successful operation


getSocketsList

Get the nodes socket list


/peers

Usage and SDK Samples

curl -X GET\
-H "Accept: application/json"\
"//peers"
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.DefaultApi;

import java.io.File;
import java.util.*;

public class DefaultApiExample {

    public static void main(String[] args) {
        
        DefaultApi apiInstance = new DefaultApi();
        try {
            Peers result = apiInstance.getSocketsList();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#getSocketsList");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.DefaultApi;

public class DefaultApiExample {

    public static void main(String[] args) {
        DefaultApi apiInstance = new DefaultApi();
        try {
            Peers result = apiInstance.getSocketsList();
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling DefaultApi#getSocketsList");
            e.printStackTrace();
        }
    }
}

DefaultApi *apiInstance = [[DefaultApi alloc] init];

// Get the nodes socket list
[apiInstance getSocketsListWithCompletionHandler: 
              ^(Peers output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var JrcNodeServerApiSpec = require('jrc_node_server_api_spec');

var api = new JrcNodeServerApiSpec.DefaultApi()
var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.getSocketsList(callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class getSocketsListExample
    {
        public void main()
        {

            var apiInstance = new DefaultApi();

            try
            {
                // Get the nodes socket list
                Peers result = apiInstance.getSocketsList();
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling DefaultApi.getSocketsList: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

$api_instance = new Swagger\Client\ApiDefaultApi();

try {
    $result = $api_instance->getSocketsList();
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->getSocketsList: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::DefaultApi;

my $api_instance = WWW::SwaggerClient::DefaultApi->new();

eval { 
    my $result = $api_instance->getSocketsList();
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling DefaultApi->getSocketsList: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# create an instance of the API class
api_instance = swagger_client.DefaultApi()

try: 
    # Get the nodes socket list
    api_response = api_instance.get_sockets_list()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling DefaultApi->getSocketsList: %s\n" % e)

Parameters

Responses

Status: 200 - successful operation