---
title: "Returns API Calls"
url: "https://docs.unified.to/unified/apicall/Returns_API_Calls"
description: "API reference for Returns API Calls. Launch multiple pre-built Apicall integrations today with zero maintenance — all through a single API."
generated_at: "2026-06-26T21:12:38.656Z"
---
# Returns API Calls

 GET/unified/apicall

## Parameters

**limit**number  default=100

**offset**number  default=0

**updated\_gte**date 

Return only results whose updated date is equal or greater to this value (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)

**sort** enum

name

updated\_at

created\_at

**order** enum

asc

desc

**external\_xref**string 

Filter the results to only those integrations for your user referenced by this value

**integration\_type**string 

Filter the results to just this integration

**error**boolean 

Filter the results for API Calls with errors

**connection\_id**string 

Filter the results to just this integration

**env**string  default=Production

**webhook\_id**string 

Filter the results to just this webhook

**type** enum

login

webhook

inbound

mcp

Filter the results to just this type

**is\_billable**boolean 

Filter the results for only billable API Calls

## Returns

[ApiCall](/unified/apicall/model)array

**id**string  read-only 

Unique identifier for this API call

**created\_at**date  read-only 

The date that this object was created (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)

**connection\_id**string 

**workspace\_id**string  read-only 

(reference to KmsSpace)

**integration\_type**string  required 

The integration type

**external\_xref**string 

your customer's user ID

**name**string  required 

The called name of the API method

**path**string  required 

The called API method's HTTP verb and route path (PUT /crm/{integration}/deak/{id})

**size**number 

The size of the response

**status**string  required 

The resulting HTTP status code (200)

**error**string 

The error description (if status code is >= 400)

**ip\_address**string 

**type** enum required 

Valid values:

 "login" 

 "webhook" 

 "inbound" 

 "mcp" 

The type of API Call being logged

**method**string  required 

**environment**string 

**webhook\_id**string 

**is\_billable**boolean 

**user\_agent**string 

**unified\_response\_time**number 

**endapi\_response\_time**number 

## Code Samples

### Node.js SDK

```
import { UnifiedTo } from '@unified-api/typescript-sdk';

const sdk = new UnifiedTo({
    security: {
        jwt: '<YOUR_API_KEY_HERE>',
    },
});

const results = await sdk.unified.listUnifiedApicalls({ 
    limit: 50,
    offset: 0,
    updated_gte: '2026-06-26T21:08:49.521Z',
    sort: 'updated_at',
    order: 'asc',
    external_xref: '',
    integration_type: '',
    error: false,
    connection_id: '',
    env: 'Production',
    webhook_id: '',
    type: '',
    is_billable: false,
 });
```

### Node.js (axios)

```
const options = {
  method: 'GET',
  url: 'https://api.unified.to/unified/apicall',
  headers: {
    authorization: 'bearer .....'
  },
  params: {
    limit: 50,
    offset: 0,
    updated_gte: '2026-06-26T21:08:49.521Z',
    sort: 'updated_at',
    order: 'asc',
    external_xref: '',
    integration_type: '',
    error: false,
    connection_id: '',
    env: 'Production',
    webhook_id: '',
    type: '',
    is_billable: false,
  }
};

const results = await axios.request(options);
```

### Java

```
AsyncHttpClient client = new DefaultAsyncHttpClient();

client.prepare("GET", "https://api.unified.to/unified/apicall?limit=50&offset=0&updated_gte=2026-06-26T21:08:49.521Z&sort=updated_at&order=asc&external_xref=&integration_type=&error=false&connection_id=&env=Production&webhook_id=&type=&is_billable=false")
  .setHeader("accept", "application/json")
  .setHeader("authorization", ".....")
  .execute()
  .toCompletableFuture()
  .thenAccept(System.out::println)
  .join();

client.close();
```

### Go

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

url := `https://api.unified.to/unified/apicall?limit=50&offset=0&updated_gte=2026-06-26T21:08:49.521Z&sort=updated_at&order=asc&external_xref=&integration_type=&error=false&connection_id=&env=Production&webhook_id=&type=&is_billable=false

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

req.Header.Add("accept", "application/json")
req.Header.Add("authorization", ".....")

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

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

### Python

```
import requests

url = "https://api.unified.to/unified/apicall?limit=50&offset=0&updated_gte=2026-06-26T21:08:49.521Z&sort=updated_at&order=asc&external_xref=&integration_type=&error=false&connection_id=&env=Production&webhook_id=&type=&is_billable=false"

headers = {
    "accept": "application/json",
    "authorization": "....."
}

response = requests.get(url, headers=headers)
```

### PHP

```
$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://api.unified.to/unified/apicall?limit=50&offset=0&updated_gte=2026-06-26T21:08:49.521Z&sort=updated_at&order=asc&external_xref=&integration_type=&error=false&connection_id=&env=Production&webhook_id=&type=&is_billable=false",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
  CURLOPT_HTTPHEADER => [
    "accept: application/json",
    "authorization: ....."
  ],
]);
```

### Ruby

```
require 'uri'
require 'net/http'
require 'openssl'

url = URI("https://api.unified.to/unified/apicall?limit=50&offset=0&updated_gte=2026-06-26T21:08:49.521Z&sort=updated_at&order=asc&external_xref=&integration_type=&error=false&connection_id=&env=Production&webhook_id=&type=&is_billable=false")

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

request = Net::HTTP::Get.new(url)
request["accept"] = 'application/json'
request["authorization"] = '....'

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

### cURL

```
curl --request GET \
  --url 'https://api.unified.to/unified/apicall?limit=50&offset=0&updated_gte=2026-06-26T21:08:49.521Z&sort=updated_at&order=asc&external_xref=&integration_type=&error=false&connection_id=&env=Production&webhook_id=&type=&is_billable=false' \
  --header 'accept: application/json' \
  --header 'authorization: .....'
```
