---
title: "List Contact Properties"
full: true
_openapi:
  method: GET
  toc: []
  structuredData:
    headings: []
    contents:
      - content: "List all properties for the organization with pagination and filtering"
_apiData:
  document: "https://reloop.sh/api/contacts/openapi/json"
  operationData: [{"path":"/api/contacts/v1/properties/list","method":"get"}]
  parameterList: [{"name":"page","type":"number","required":false,"description":"","location":"query","defaultValue":1,"minimum":1},{"name":"limit","type":"number","required":false,"description":"","location":"query","defaultValue":10,"minimum":1,"maximum":100},{"name":"search","type":"string","required":false,"description":"Search by name","location":"query"},{"name":"type","type":"\"string\" | \"number\"","required":false,"description":"","location":"query","enumValues":["string","number"]},{"name":"organizationId","type":"string","required":false,"description":"","location":"query"}]
  responseMap: {"200":{"description":"Response for status 200","schema":{"object":"contact_property","properties":[{"object":"contact_property","id":"prop_123456789","propertyName":"company_name","propertyType":"string","defaultValue":"Unknown","createdAt":"2026-03-27T10:00:00Z","updatedAt":"2026-03-27T10:00:00Z"}],"total":1,"page":0,"limit":0,"event":"evt_123456789"}},"401":{"description":"Response for status 401","schema":{"message":"Unauthorized access","why":"A contact with this email already exists in your organization.","fix":"Use a different email address or update the existing contact instead."}}}
  codeSamples:
    - id: node
      lang: javascript
      label: Node.js
      source: |-
        import { Reloop } from "reloop-email";
        
        const reloop = new Reloop({ apiKey: "rl_123456789" });
        
        const { properties, propertyError } = await reloop.contacts.properties.list({
          page: 1,
          limit: 10,
        });
        
        if (propertyError) throw propertyError;
        
        console.log(properties.total, properties.properties);
    - id: curl
      lang: bash
      label: cURL
      source: |-
        curl "https://reloop.sh/api/contacts/v1/properties/list?page=1&limit=10" \
          -H "x-api-key: rl_123456789"
    - id: python
      lang: python
      label: Python
      source: |-
        from reloop_email import Reloop
        
        reloop = Reloop(api_key="rl_123456789")
        
        result = reloop.contacts.properties.list({
          "page": 1,
          "limit": 10,
        })
        
        if result.property_error:
            raise result.property_error
        
        print(result.properties["total"], result.properties["properties"])
    - id: php
      lang: php
      label: PHP
      source: |-
        <?php
        
        require 'vendor/autoload.php';
        
        use Reloop\Reloop;
        
        $reloop = Reloop::client('rl_123456789');
        
        $properties = $reloop->contacts->properties->list([
            'page' => 1,
            'limit' => 10,
        ]);
        echo $properties['total'] . ' ' . $properties['properties'] . PHP_EOL;
    - id: java
      lang: java
      label: Java
      source: |-
        import sh.reloop.ReloopClient;
        ReloopClient reloop = new ReloopClient("rl_123456789");
        
        ListPropertiesParams params = new ListPropertiesParams();
        params.page = 1;
        params.limit = 10;
        var properties = reloop.contacts.properties.list(params);
        System.out.println(properties.total + " " + properties.properties);
    - id: dotnet
      lang: csharp
      label: .NET
      source: |-
        using Reloop;
        using Reloop.Models;
        
        var reloop = new ReloopClient("rl_123456789");
        
        await reloop.Contacts.ListPropertiesAsync(new Dictionary<string, object?> { ["page"] = 1, ["limit"] = 10 });
    - id: go
      lang: go
      label: Go
      source: |-
        import reloop "github.com/reloop-labs/reloop-go"
        
        client, _ := reloop.NewClient(reloop.ClientOptions{
            APIKey: "rl_123456789",
        })
        
        properties, _ := client.Contacts.ListProperties(map[string]interface{}{"page": 1, "limit": 10})
    - id: rust
      lang: rust
      label: Rust
      source: |-
        use reloop::ReloopClient;
        #[tokio::main]
        async fn main() -> Result<(), Box<dyn std::error::Error>> {
            let reloop = ReloopClient::new("rl_123456789".to_string(), None);
        
            reloop.contacts().list_properties(Some(ListPropertiesParams { page: Some(1), limit: Some(10), ..Default::default() })).await?;
        
            Ok(())
        }
    - id: ruby
      lang: ruby
      label: Ruby
      source: |-
        require "reloop"
        
        reloop = Reloop::Client.new(api_key: "rl_123456789")
        
        properties = reloop.contacts.list_properties(page: 1, limit: 10)
    - id: elixir
      lang: elixir
      label: Elixir
      source: |-
        client = Reloop.client("rl_123456789")
        
        {:ok, properties} = Reloop.Services.Contacts.list_properties(client, %{page: 1, limit: 10})
---
> For the complete documentation index, see [llms-docs.txt](/llms-docs.txt) or the site index [llms.txt](/llms.txt). Full docs corpus: [llms-full-docs.txt](/llms-full-docs.txt). Prefer markdown URLs (append `.md`) for agent consumption. Product skill: [skill.md](/skill.md).


{/* This file was generated by the OpenAPI doc generator. Do not edit this file directly. Run `bun run generate:api-docs` to regenerate. */}

<APIPage />
