List contacts
Requires contacts:read. Returns a cursor page. Query predicates are AND-combined; in matches any listed value. At most 10 predicates, including 3 custom predicates. Dynamic filters use filter[customFields.KEY][operator]; replace KEY with an active definition key. in/hasAny use comma-separated strings (up to 50 values). These dynamic names cannot be enumerated as fixed OpenAPI parameters. See the filtering and custom-fields guides. Fields omitted from list output may still be filtered using supported operators.
curl -X GET "https://app.inrepli.com/v1/contacts?limit=50&cursor=example_string&count=null&q=example_string&sort=-createdAt&filter[id]=example_string&filter[id][in]=example_string&filter[id][isNull]=example_string&filter[ownerId]=example_string&filter[ownerId][in]=example_string&filter[ownerId][isNull]=example_string&filter[createdAt]=example_string&filter[createdAt][gt]=example_string&filter[createdAt][gte]=example_string&filter[createdAt][lt]=example_string&filter[createdAt][lte]=example_string&filter[createdAt][isNull]=example_string&filter[updatedAt]=example_string&filter[updatedAt][gt]=example_string&filter[updatedAt][gte]=example_string&filter[updatedAt][lt]=example_string&filter[updatedAt][lte]=example_string&filter[updatedAt][isNull]=example_string&filter[lastInteractionAt]=example_string&filter[lastInteractionAt][gt]=example_string&filter[lastInteractionAt][gte]=example_string&filter[lastInteractionAt][lt]=example_string&filter[lastInteractionAt][lte]=example_string&filter[lastInteractionAt][isNull]=example_string&filter[enrichmentStatus]=example_string&filter[enrichmentStatus][in]=example_string&filter[enrichmentStatus][isNull]=example_string&filter[email]=user%40example.com&filter[email][in]=user%40example.com&filter[email][isNull]=user%40example.com&filter[mobile]=example_string&filter[mobile][in]=example_string&filter[mobile][isNull]=example_string&filter[companyId]=example_string&filter[companyId][in]=example_string&filter[companyId][isNull]=example_string&filter[qualification]=example_string&filter[qualification][isNull]=example_string&filter[intentLevel]=example_string&filter[intentLevel][in]=example_string&filter[intentLevel][isNull]=example_string&filter[country]=USA&filter[country][in]=USA&filter[country][isNull]=USA&filter[industry]=example_string&filter[industry][in]=example_string&filter[industry][isNull]=example_string&filter[position]=example_string&filter[position][contains]=example_string&filter[position][isNull]=example_string" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_TOKEN"
import requests
import json
url = "https://app.inrepli.com/v1/contacts?limit=50&cursor=example_string&count=null&q=example_string&sort=-createdAt&filter[id]=example_string&filter[id][in]=example_string&filter[id][isNull]=example_string&filter[ownerId]=example_string&filter[ownerId][in]=example_string&filter[ownerId][isNull]=example_string&filter[createdAt]=example_string&filter[createdAt][gt]=example_string&filter[createdAt][gte]=example_string&filter[createdAt][lt]=example_string&filter[createdAt][lte]=example_string&filter[createdAt][isNull]=example_string&filter[updatedAt]=example_string&filter[updatedAt][gt]=example_string&filter[updatedAt][gte]=example_string&filter[updatedAt][lt]=example_string&filter[updatedAt][lte]=example_string&filter[updatedAt][isNull]=example_string&filter[lastInteractionAt]=example_string&filter[lastInteractionAt][gt]=example_string&filter[lastInteractionAt][gte]=example_string&filter[lastInteractionAt][lt]=example_string&filter[lastInteractionAt][lte]=example_string&filter[lastInteractionAt][isNull]=example_string&filter[enrichmentStatus]=example_string&filter[enrichmentStatus][in]=example_string&filter[enrichmentStatus][isNull]=example_string&filter[email]=user%40example.com&filter[email][in]=user%40example.com&filter[email][isNull]=user%40example.com&filter[mobile]=example_string&filter[mobile][in]=example_string&filter[mobile][isNull]=example_string&filter[companyId]=example_string&filter[companyId][in]=example_string&filter[companyId][isNull]=example_string&filter[qualification]=example_string&filter[qualification][isNull]=example_string&filter[intentLevel]=example_string&filter[intentLevel][in]=example_string&filter[intentLevel][isNull]=example_string&filter[country]=USA&filter[country][in]=USA&filter[country][isNull]=USA&filter[industry]=example_string&filter[industry][in]=example_string&filter[industry][isNull]=example_string&filter[position]=example_string&filter[position][contains]=example_string&filter[position][isNull]=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?limit=50&cursor=example_string&count=null&q=example_string&sort=-createdAt&filter[id]=example_string&filter[id][in]=example_string&filter[id][isNull]=example_string&filter[ownerId]=example_string&filter[ownerId][in]=example_string&filter[ownerId][isNull]=example_string&filter[createdAt]=example_string&filter[createdAt][gt]=example_string&filter[createdAt][gte]=example_string&filter[createdAt][lt]=example_string&filter[createdAt][lte]=example_string&filter[createdAt][isNull]=example_string&filter[updatedAt]=example_string&filter[updatedAt][gt]=example_string&filter[updatedAt][gte]=example_string&filter[updatedAt][lt]=example_string&filter[updatedAt][lte]=example_string&filter[updatedAt][isNull]=example_string&filter[lastInteractionAt]=example_string&filter[lastInteractionAt][gt]=example_string&filter[lastInteractionAt][gte]=example_string&filter[lastInteractionAt][lt]=example_string&filter[lastInteractionAt][lte]=example_string&filter[lastInteractionAt][isNull]=example_string&filter[enrichmentStatus]=example_string&filter[enrichmentStatus][in]=example_string&filter[enrichmentStatus][isNull]=example_string&filter[email]=user%40example.com&filter[email][in]=user%40example.com&filter[email][isNull]=user%40example.com&filter[mobile]=example_string&filter[mobile][in]=example_string&filter[mobile][isNull]=example_string&filter[companyId]=example_string&filter[companyId][in]=example_string&filter[companyId][isNull]=example_string&filter[qualification]=example_string&filter[qualification][isNull]=example_string&filter[intentLevel]=example_string&filter[intentLevel][in]=example_string&filter[intentLevel][isNull]=example_string&filter[country]=USA&filter[country][in]=USA&filter[country][isNull]=USA&filter[industry]=example_string&filter[industry][in]=example_string&filter[industry][isNull]=example_string&filter[position]=example_string&filter[position][contains]=example_string&filter[position][isNull]=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?limit=50&cursor=example_string&count=null&q=example_string&sort=-createdAt&filter[id]=example_string&filter[id][in]=example_string&filter[id][isNull]=example_string&filter[ownerId]=example_string&filter[ownerId][in]=example_string&filter[ownerId][isNull]=example_string&filter[createdAt]=example_string&filter[createdAt][gt]=example_string&filter[createdAt][gte]=example_string&filter[createdAt][lt]=example_string&filter[createdAt][lte]=example_string&filter[createdAt][isNull]=example_string&filter[updatedAt]=example_string&filter[updatedAt][gt]=example_string&filter[updatedAt][gte]=example_string&filter[updatedAt][lt]=example_string&filter[updatedAt][lte]=example_string&filter[updatedAt][isNull]=example_string&filter[lastInteractionAt]=example_string&filter[lastInteractionAt][gt]=example_string&filter[lastInteractionAt][gte]=example_string&filter[lastInteractionAt][lt]=example_string&filter[lastInteractionAt][lte]=example_string&filter[lastInteractionAt][isNull]=example_string&filter[enrichmentStatus]=example_string&filter[enrichmentStatus][in]=example_string&filter[enrichmentStatus][isNull]=example_string&filter[email]=user%40example.com&filter[email][in]=user%40example.com&filter[email][isNull]=user%40example.com&filter[mobile]=example_string&filter[mobile][in]=example_string&filter[mobile][isNull]=example_string&filter[companyId]=example_string&filter[companyId][in]=example_string&filter[companyId][isNull]=example_string&filter[qualification]=example_string&filter[qualification][isNull]=example_string&filter[intentLevel]=example_string&filter[intentLevel][in]=example_string&filter[intentLevel][isNull]=example_string&filter[country]=USA&filter[country][in]=USA&filter[country][isNull]=USA&filter[industry]=example_string&filter[industry][in]=example_string&filter[industry][isNull]=example_string&filter[position]=example_string&filter[position][contains]=example_string&filter[position][isNull]=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?limit=50&cursor=example_string&count=null&q=example_string&sort=-createdAt&filter[id]=example_string&filter[id][in]=example_string&filter[id][isNull]=example_string&filter[ownerId]=example_string&filter[ownerId][in]=example_string&filter[ownerId][isNull]=example_string&filter[createdAt]=example_string&filter[createdAt][gt]=example_string&filter[createdAt][gte]=example_string&filter[createdAt][lt]=example_string&filter[createdAt][lte]=example_string&filter[createdAt][isNull]=example_string&filter[updatedAt]=example_string&filter[updatedAt][gt]=example_string&filter[updatedAt][gte]=example_string&filter[updatedAt][lt]=example_string&filter[updatedAt][lte]=example_string&filter[updatedAt][isNull]=example_string&filter[lastInteractionAt]=example_string&filter[lastInteractionAt][gt]=example_string&filter[lastInteractionAt][gte]=example_string&filter[lastInteractionAt][lt]=example_string&filter[lastInteractionAt][lte]=example_string&filter[lastInteractionAt][isNull]=example_string&filter[enrichmentStatus]=example_string&filter[enrichmentStatus][in]=example_string&filter[enrichmentStatus][isNull]=example_string&filter[email]=user%40example.com&filter[email][in]=user%40example.com&filter[email][isNull]=user%40example.com&filter[mobile]=example_string&filter[mobile][in]=example_string&filter[mobile][isNull]=example_string&filter[companyId]=example_string&filter[companyId][in]=example_string&filter[companyId][isNull]=example_string&filter[qualification]=example_string&filter[qualification][isNull]=example_string&filter[intentLevel]=example_string&filter[intentLevel][in]=example_string&filter[intentLevel][isNull]=example_string&filter[country]=USA&filter[country][in]=USA&filter[country][isNull]=USA&filter[industry]=example_string&filter[industry][in]=example_string&filter[industry][isNull]=example_string&filter[position]=example_string&filter[position][contains]=example_string&filter[position][isNull]=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-1",
"name": "Example second 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.396Z",
"updatedAt": "2026-09-09T06:34:58.396Z",
"intentType": null,
"intentLevel": null,
"lastInteractionAt": null,
"enrichmentStatus": null,
"enrichmentAt": null,
"etag": ""2026-09-09T06:34:58.396Z"",
"location": {
"country": null,
"region": null,
"city": null
},
"customFields": {
"segment": null
}
}
],
"nextCursor": "OPAQUE_CURSOR_FROM_PREVIOUS_PAGE"
}
{
"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
}
/contacts
Target server for requests. Edit to use your own host.
Tenant API key beginning with inr_v1_.
Page size.
Opaque nextCursor from the preceding page. Preserve filters, q, sort, count and include. Bound to tenant and key scopes; not a snapshot.
Optional complete filtered count.
Optional case-insensitive substring search of basic identity text, not custom fields or notes. Whitespace is trimmed.
Comma-separated fields: createdAt, updatedAt, name, lastInteractionAt. Prefix - for descending. Default -createdAt; at most two distinct fields. Server appends id as a tie-breaker; nullable values sort last.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Comma-separated values (1–50), sent once as a string. No repeated keys or JSON arrays.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Comma-separated values (1–50), sent once as a string. No repeated keys or JSON arrays.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Comma-separated values (1–50), sent once as a string. No repeated keys or JSON arrays.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Comma-separated values (1–50), sent once as a string. No repeated keys or JSON arrays.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Comma-separated values (1–50), sent once as a string. No repeated keys or JSON arrays.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Comma-separated values (1–50), sent once as a string. No repeated keys or JSON arrays.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Comma-separated values (1–50), sent once as a string. No repeated keys or JSON arrays.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Comma-separated values (1–50), sent once as a string. No repeated keys or JSON arrays.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Comma-separated values (1–50), sent once as a string. No repeated keys or JSON arrays.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Literal true for missing/null, false for present.
Request Preview
Response
Response will appear here after sending the request
Authentication
Bearer token. Tenant API key beginning with inr_v1_.
Query Parameters
Page size.
Opaque nextCursor from the preceding page. Preserve filters, q, sort, count and include. Bound to tenant and key scopes; not a snapshot.
Optional case-insensitive substring search of basic identity text, not custom fields or notes. Whitespace is trimmed.
Comma-separated fields: createdAt, updatedAt, name, lastInteractionAt. Prefix - for descending. Default -createdAt; at most two distinct fields. Server appends id as a tie-breaker; nullable values sort last.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Comma-separated values (1–50), sent once as a string. No repeated keys or JSON arrays.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Comma-separated values (1–50), sent once as a string. No repeated keys or JSON arrays.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Comma-separated values (1–50), sent once as a string. No repeated keys or JSON arrays.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Comma-separated values (1–50), sent once as a string. No repeated keys or JSON arrays.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Comma-separated values (1–50), sent once as a string. No repeated keys or JSON arrays.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Comma-separated values (1–50), sent once as a string. No repeated keys or JSON arrays.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Comma-separated values (1–50), sent once as a string. No repeated keys or JSON arrays.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Comma-separated values (1–50), sent once as a string. No repeated keys or JSON arrays.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Comma-separated values (1–50), sent once as a string. No repeated keys or JSON arrays.
Literal true for missing/null, false for present.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Send once as a string. filter[field] is shorthand for filter[field][eq]. Dates must be valid calendar dates and timestamps must include a timezone.
Literal true for missing/null, false for present.