Skip to main content
GET
/
crm
/
objects
List CRM objects
curl --request GET \
  --url https://api.zeeg.me/v2/crm/objects \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api.zeeg.me/v2/crm/objects"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.zeeg.me/v2/crm/objects', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://api.zeeg.me/v2/crm/objects",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
  CURLOPT_HTTPHEADER => [
    "Authorization: Bearer <token>"
  ],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://api.zeeg.me/v2/crm/objects"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("Authorization", "Bearer <token>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.zeeg.me/v2/crm/objects")
  .header("Authorization", "Bearer <token>")
  .asString();
require 'uri'
require 'net/http'

url = URI("https://api.zeeg.me/v2/crm/objects")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
{ "success": true, "status": 200, "collection": [ { "slug": "people", "singularName": "Person", "pluralName": "People", "isStandard": true, "isActive": true, "attributes": [ { "key": "first_name", "label": "First Name", "type": "text", "isRequired": false, "isStandard": true }, { "key": "last_name", "label": "Last Name", "type": "text", "isRequired": false, "isStandard": true }, { "key": "email", "label": "Email", "type": "text", "isRequired": false, "isStandard": true }, { "key": "phone_number", "label": "Phone Number", "type": "phone_number", "isRequired": false, "isStandard": true } ], "createdAt": "2025-01-15T09:00:00+00:00", "updatedAt": "2025-01-15T09:00:00+00:00" }, { "slug": "companies", "singularName": "Company", "pluralName": "Companies", "isStandard": true, "isActive": true, "attributes": [ { "key": "name", "label": "Name", "type": "text", "isRequired": true, "isStandard": true }, { "key": "domain", "label": "Domain", "type": "text", "isRequired": false, "isStandard": true } ], "createdAt": "2025-01-15T09:00:00+00:00", "updatedAt": "2025-01-15T09:00:00+00:00" } ] }
Returns all CRM objects in your workspace along with their complete attribute schemas. Standard objects (people, companies) are always present. Custom objects appear once created. Use this endpoint first to map your existing schema before importing records — every attribute key returned here is the identifier you use when writing record values.
This endpoint returns all objects in a single response. There is no pagination.

Authorizations

Authorization
string
header
required

Response

OK

success
boolean
Example:

true

status
integer
Example:

200

collection
object[]
Last modified on June 11, 2026