> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://apidoc-v1.maniscloud.com/llms.txt.
> For full documentation content, see https://apidoc-v1.maniscloud.com/llms-full.txt.

# Transaction Summary

GET https://api/v1/transactions/summary

Reference: https://apidoc-v1.maniscloud.com/manis-unified-api-v-1-0/transaction/transaction-summary

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: collection
  version: 1.0.0
paths:
  /api/v1/transactions/summary:
    get:
      operationId: transaction-summary
      summary: Transaction Summary
      tags:
        - subpackage_transaction
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Transaction_Transaction
                  Summary_Response_200
servers:
  - url: https:/
components:
  schemas:
    Transaction_Transaction Summary_Response_200:
      type: object
      properties:
        successRate:
          type: integer
        totalVolume:
          type: integer
        pendingActions:
          type: integer
        totalTransactions:
          type: integer
        failedTransactions:
          type: integer
        pendingTransactions:
          type: integer
        averageProcessingTime:
          type: integer
        completedTransactions:
          type: integer
      required:
        - successRate
        - totalVolume
        - pendingActions
        - totalTransactions
        - failedTransactions
        - pendingTransactions
        - averageProcessingTime
        - completedTransactions
      title: Transaction_Transaction Summary_Response_200

```

## SDK Code Examples

```python Transaction_Transaction Summary_example
import requests

url = "https://https/api/v1/transactions/summary"

response = requests.get(url)

print(response.json())
```

```javascript Transaction_Transaction Summary_example
const url = 'https://https/api/v1/transactions/summary';
const options = {method: 'GET'};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go Transaction_Transaction Summary_example
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://https/api/v1/transactions/summary"

	req, _ := http.NewRequest("GET", url, nil)

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby Transaction_Transaction Summary_example
require 'uri'
require 'net/http'

url = URI("https://https/api/v1/transactions/summary")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
```

```java Transaction_Transaction Summary_example
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://https/api/v1/transactions/summary")
  .asString();
```

```php Transaction_Transaction Summary_example
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://https/api/v1/transactions/summary');

echo $response->getBody();
```

```csharp Transaction_Transaction Summary_example
using RestSharp;

var client = new RestClient("https://https/api/v1/transactions/summary");
var request = new RestRequest(Method.GET);
IRestResponse response = client.Execute(request);
```

```swift Transaction_Transaction Summary_example
import Foundation

let request = NSMutableURLRequest(url: NSURL(string: "https://https/api/v1/transactions/summary")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```