Skip to main content

Litecoin

POST 

https://api.chaingate.dev/rpc/litecoin

Litecoin

Request

Bodyrequired

    id objectnullablerequired
    anyOf
    string
    paramsundefined[]required
    methodstringrequired
    jsonrpcstringrequired

Responses

Ok

Schema

Authorization: apiKey

name: apiKeytype: apiKeyin: query
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());
Request Collapse all
Base URL
https://api.chaingate.dev
Auth
Body required
{
  "id": "string",
  "params": [
    null
  ],
  "method": "string",
  "jsonrpc": "string"
}
ResponseClear

Click the Send API Request button above and see the response here!