Skip to main content
GET
https://api.talktohumans.app
/
v1
/
views
List contact views
curl --request GET \
  --url https://api.talktohumans.app/v1/views \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "views": [
      {
        "id": "789",
        "public_id": "mem_2f5e3a4b",
        "type": "contact",
        "view_kind": "member",
        "name": "Relevant leads",
        "description": "Leads found in my network",
        "account": {
          "account_id": "42",
          "display_name": "Jane Doe",
          "provider_account_id": "ACoAA000000",
          "owner_user_id": "7"
        },
        "app_url": "https://app.talktohumans.app/contacts/mem_2f5e3a4b",
        "created_at": "2026-05-12T12:00:00Z",
        "updated_at": "2026-05-12T12:00:00Z"
      }
    ],
    "pagination": {
      "limit": 10,
      "has_more": false
    }
  }
}

Authorizations

Authorization
string
header
required

Pass your API key as Authorization: Bearer <api_key>.

Query Parameters

account_id
string[]

LinkedIn account IDs returned by GET /v1/accounts.

Repeat the query parameter for multiple accounts. The backend also accepts comma-separated values.

Pattern: ^[1-9][0-9]*$
limit
integer
default:10

Page size. Defaults to 10. Values above 25 are clamped to 25.

Required range: 1 <= x <= 25
cursor
string

Opaque cursor from the previous response's pagination.next_cursor.

Response

Saved contact views.

data
object
required