---
title: "Retrieve specific API Call by its ID"
url: "https://docs.unified.to/unified/apicall/Retrieve_specific_API_Call_by_its_ID"
description: "API reference for Retrieve specific API Call by its ID. Launch multiple pre-built Apicall integrations today with zero maintenance — all through a single API."
generated_at: "2026-06-03T19:04:33.749Z"
---
# Retrieve specific API Call by its ID

 GET/unified/apicall/{id}

## Parameters

**id**string  required 

ID of the Apicall

## Returns

[ApiCall](/unified/apicall/model)

**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 id = '1234';

const results = await sdk.unified.getUnifiedApicall({ id: '5dc201f9414446e39b2045aa', 

 });
```

### Node.js (axios)

```
const options = {
  method: 'GET',
  url: 'https://api.unified.to/unified/apicall/5de520f96e439b002043d8d8',
  headers: {
    authorization: 'bearer .....'
  },

};

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

### Java

```
AsyncHttpClient client = new DefaultAsyncHttpClient();

client.prepare("GET", "https://api.unified.to/unified/apicall/5de520f96e439b002043d8d8")
  .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/5de520f96e439b002043d8d8

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/5de520f96e439b002043d8d8"

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/5de520f96e439b002043d8d8",
  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/5de520f96e439b002043d8d8")

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/5de520f96e439b002043d8d8' \
  --header 'accept: application/json' \
  --header 'authorization: .....'
```
