Get contact
Requires contacts:read. Returns all public scalar fields and active custom values by default. Related resources require explicit include and their read scope.
curl -X GET "https://app.inrepli.com/v1/contacts/example_string?include=example_string" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_TOKEN"
import requests
import json
url = "https://app.inrepli.com/v1/contacts/example_string?include=example_string"
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_API_TOKEN"
}
response = requests.get(url, headers=headers)
print(response.json())
const response = await fetch("https://app.inrepli.com/v1/contacts/example_string?include=example_string", {
method: "GET",
headers: {
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_API_TOKEN"
}
});
const data = await response.json();
console.log(data);
package main
import (
"fmt"
"net/http"
)
func main() {
req, err := http.NewRequest("GET", "https://app.inrepli.com/v1/contacts/example_string?include=example_string", nil)
if err != nil {
panic(err)
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", "Bearer YOUR_API_TOKEN")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
fmt.Println("Response Status:", resp.Status)
}
require 'net/http'
require 'json'
uri = URI('https://app.inrepli.com/v1/contacts/example_string?include=example_string')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Get.new(uri)
request['Content-Type'] = 'application/json'
request['Authorization'] = 'Bearer YOUR_API_TOKEN'
response = http.request(request)
puts response.body
{
"data": {
"id": "example-id-2",
"name": "Example contact",
"firstName": null,
"lastName": null,
"email": "contact@example.test",
"mobile": null,
"position": null,
"company": null,
"companyId": null,
"ownerId": null,
"qualification": true,
"createdAt": "2026-09-09T06:34:58.379Z",
"updatedAt": "2026-09-09T06:34:58.379Z",
"industry": null,
"language": null,
"timezone": null,
"linkedinUrl": null,
"recordSource": null,
"originChannel": null,
"notes": null,
"notesAt": null,
"score": null,
"reasoning": null,
"qualificationConfidence": null,
"qualifiedAt": null,
"intentType": null,
"intentLevel": null,
"intentReason": null,
"intentInferredAt": null,
"lastInteractionAt": null,
"lastMessageSentAt": null,
"lastMessageReceivedAt": null,
"sessionSummaryDiscussed": null,
"sessionSummaryRequests": null,
"sessionSummaryAt": null,
"enrichmentStatus": null,
"enrichmentAt": null,
"doNotContact": null,
"doNotContactAt": null,
"doNotContactReason": null,
"emailMarketingConsentStatus": null,
"emailMarketingConsentUpdatedAt": null,
"smsMarketingConsentStatus": null,
"smsMarketingConsentUpdatedAt": null,
"whatsappMarketingConsentStatus": null,
"whatsappMarketingConsentUpdatedAt": null,
"phoneMarketingConsentStatus": null,
"phoneMarketingConsentUpdatedAt": null,
"consentUpdatedAt": null,
"contactable": null,
"contactableChannels": null,
"contactabilityUpdatedAt": null,
"emailReachabilityStatus": null,
"webChatReachabilityStatus": null,
"whatsappReachabilityStatus": null,
"whatsappServiceWindowExpiresAt": null,
"phoneReachabilityStatus": null,
"etag": ""2026-09-09T06:34:58.379Z"",
"location": {
"country": null,
"region": null,
"city": null
},
"customFields": {
"segment": "enterprise"
}
}
}
{
"error": "Bad Request",
"message": "The request contains invalid parameters or malformed data",
"code": 400,
"details": [
{
"field": "email",
"message": "Invalid email format"
}
]
}
{
"error": "Unauthorized",
"message": "Authentication required. Please provide a valid API token",
"code": 401
}
{
"error": "Forbidden",
"message": "You don't have permission to access this resource",
"code": 403
}
{
"error": "Not Found",
"message": "The requested resource was not found",
"code": 404
}
{
"error": "Too Many Requests",
"message": "Rate limit exceeded. Please try again later",
"code": 429,
"retryAfter": 3600
}
{
"error": "Internal Server Error",
"message": "An unexpected error occurred on the server",
"code": 500,
"requestId": "req_1234567890"
}
{
"error": "Service Unavailable",
"message": "The service is temporarily unavailable. Please try again later",
"code": 503
}
GET
/contacts/{id}GET
Base URLstring
Target server for requests. Edit to use your own host.
Bearer Token
Bearer Tokenstring
RequiredTenant API key beginning with inr_v1_.
Tenant API key beginning with inr_v1_.
query
includestring
Optional relations: company,owner. profile,notes,insights,engagement,enrichment,consent,contactability remain accepted for compatibility; their fields are now returned by default.
Request Preview
Response
Response will appear here after sending the request
Authentication
header
Authorizationstring
RequiredBearer token. Tenant API key beginning with inr_v1_.
Path Parameters
Query Parameters
includestring
Optional relations: company,owner. profile,notes,insights,engagement,enrichment,consent,contactability remain accepted for compatibility; their fields are now returned by default.
Responses
dataobject
Was this page helpful?