Litecoin
POSThttps://api.chaingate.dev/rpc/litecoin
Litecoin
Request
- application/json
Bodyrequired
id objectnullablerequired
paramsundefined[]required
methodstringrequired
jsonrpcstringrequired
Responses
- 200
- 400
- 500
Ok
- application/json
- Schema
Schema
Bad request
Internal server error
Authorization: apiKey
name: apiKeytype: apiKeyin: query
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://api.chaingate.dev/rpc/litecoin");
request.Headers.Add("Accept", "application/json");
var content = new StringContent("{\n \"id\": \"string\",\n \"params\": [\n null\n ],\n \"method\": \"string\",\n \"jsonrpc\": \"string\"\n}", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
ResponseClear