1. Schema
Highperformr API
  • Introduction
  • Contacts
    • Bulk fetch contacts by IDs
      POST
    • Get contacts by segment
      POST
    • Get contact by ID
      GET
    • Update contact
      PATCH
    • Delete contact
      DELETE
    • Upsert contact into a source
      POST
    • Bulk upsert contacts for source
      POST
    • Unique values of one field for a filtered contact set
      POST
    • Unified Data API - async contact enrichment
      POST
  • Schema
    • Get contact schema
      GET
    • Get discovery search contact schema
      GET
    • Get discovery search company schema
      GET
    • Get options for field
      GET
    • Get discovery search options for field
      GET
  • Discovery search
    • Find contacts v2
      POST
    • Find companies v2
      POST
  • Jobs
    • Get job status by id
      GET
  • Social publishing
    • Create draft post
      POST
    • List posts (drafts, scheduled, published)
      POST
    • Schedule or publish posts (bulk)
      POST
    • Schedule a LinkedIn comment on an external post
      POST
    • Configure cross-account auto-repost
      POST
    • Upload media file (multipart)
      POST
    • Assemble chunked uploads into one file
      POST
    • Import media from a public URL
      POST
  • Integrations (social)
    • List social integrations (filter)
Login
  1. Schema

Get contact schema

GET
/schema/contact
Returns the field definitions for contacts (and related company fields) in this workspace. Each item includes a writeAccessPath—use that exact string when:
building filter conditions (field on POST /contacts/filter-contacts and related APIs),
choosing which attributes to return (fields on filter and POST /contacts/by-segment/{segmentId}).
Paths look like contact.<name>, company.<name>, or contact.customFields.<id> for custom fields. There is no fixed enum of paths; always read them from this response for your account.

Request

Authorization
API Key
Add parameter in header
x-api-key
Example:
x-api-key: ********************
or

Responses

🟢200
application/json
Field metadata including writeAccessPath, types, and labels. Use writeAccessPath values in filter and segment contact APIs.
Bodyapplication/json

🟠401
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://app.highperformr.ai/api/schema/contact' \
--header 'x-api-key: <api-key>'
Response Response Example
200 - Success
{
    "status": "ok",
    "message": "Success"
}
Modified at 2026-04-22 07:54:17
Previous
Unified Data API - async contact enrichment
Next
Get discovery search contact schema
Built with