> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anny.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Get available properties

> This endpoint allows listing all available properties (for a given resource category).
Properties can be used to filter resources by adding the following query params to any /resources endpoint:

Comparison operator: `filter[properties][{propertyId}][o]={operator}` // operator: >=, =, <=, in

Comparison value: `filter[properties][{propertyId}][v]={value}` // value: int|string|array



## OpenAPI

````yaml /developers/openapi/customer.openapi.json get /api/v1/organizations/{organization_slug}/properties
openapi: 3.1.0
info:
  title: customer-api
  version: '1.0'
  contact:
    name: anny GmbH
    url: anny.co
    email: support@anny.co
  description: >-
    The Customer API is the **public booking surface** for end-user facing
    applications. It covers everything a customer can see and do — searching
    availability, placing bookings, managing their account, and more.


    ---


    ## When to use the Customer API


    Use the Customer API when you are **building something your customers
    interact with directly**:


    - **Custom booking flow** — embed a fully branded booking experience inside
    your own app or website instead of redirecting to anny

    - **Headless checkout** — drive the cart, checkout, and payment steps
    entirely from your own frontend

    - **Custom confirmation pages** — retrieve booking and order details after
    checkout to render a tailored confirmation

    - **Opening hours and availability on public pages** — display live schedule
    data on your website with no authentication required

    - **White-label experiences** — build lobby screens, kiosks, or mobile apps
    on top of the Customer API


    Many endpoints work **without any authentication**. For a custom OAuth2
    client to authenticate your own users, contact
    [support@anny.co](mailto:support@anny.co) with your use case.


    ---


    ## Authentication — Optional Auth


    Most Customer API endpoints work without a token. Providing a customer
    bearer token unlocks personal data and additional actions:


    | Auth state | What's accessible |

    |---|---|

    | Anonymous | Availability, public resource/service info, booking lookup by
    number, checkout |

    | Customer token | Own bookings, account data, communities, passes, queue
    tickets |


    ```

    Authorization: Bearer {customer_access_token}

    ```


    To authenticate your own users, you need a custom OAuth2 client — contact
    [support@anny.co](mailto:support@anny.co). See the [Authentication
    guide](/developers/guides/authentication) for the full token flow.


    ---


    ## Customer API vs Admin API


    | Feature | Customer API | Admin API |

    |---|---|---|

    | **Use case** | End-user apps, booking widgets | Server-side automation,
    backend tooling |

    | **Auth** | Optional — many endpoints work without a token | Required — API
    token or OAuth2 |

    | **Identifiers** | Slugs, booking numbers, order numbers | Immutable UUIDs
    and integer IDs |

    | **Access** | Public and customer-owned data only | Full read/write |


    → [Go to the Admin API](/developers/api-reference/admin)


    ---


    ## Resource Identifiers


    The Customer API uses **human-readable identifiers** that appear in booking
    URLs:


    | Entity | Identifier | Example |

    |---|---|---|

    | Resources | Slug | `conference-room-berlin` |

    | Services | Slug | `hourly-desk-booking` |

    | Organizations | Slug | `acme-gmbh` |

    | Bookings | Booking number | `BB123456789` |

    | Orders | Order number | `BO123456789` |


    Use the Admin API if you need immutable internal IDs for storage in external
    systems.


    ---


    ## Starting Points


    | Guide | What it covers |

    |---|---|

    | [Getting Started](/developers) | First steps and quickstart |

    | [JSON:API Conventions](/developers/guides/json-api-conventions) | Request
    and response format |

    | [Authentication](/developers/guides/authentication) | Customer token flow,
    OAuth2, anonymous access |

    | [Availability & Booking Search](/developers/guides/availability) | Search
    open slots, filter by service and resource |

    | [Customer Booking
    Lifecycle](/developers/guides/customer/booking-lifecycle) | View, modify,
    and cancel bookings |

    | [Order & Checkout Flow](/developers/guides/customer/checkout) | Cart,
    checkout steps, payment |

    | [Plans & Subscriptions](/developers/guides/customer/plans-subscriptions) |
    Membership plans and recurring billing |

    | [Communities & Access Control](/developers/guides/customer/communities) |
    Community membership and access gates |

    | [Waitlist](/developers/guides/customer/waitlist) | Join and manage
    waitlists |


    ---


    ## Base URLs


    | Environment | URL |

    |---|---|

    | Production | `https://b.anny.co` |

    | Gov-Cloud | `https://b.anny.eu` |
  termsOfService: https://anny.co/terms-of-use
  x-logo:
    url: https://cdn.anny.co/cms/anny_logo_main_colour_blue_4865e76654.svg
    altText: anny logo
    href: https://anny.co
servers:
  - url: https://b.anny.co
    description: Production
  - url: https://b.anny.eu
    description: Gov-Cloud
security: []
tags:
  - name: Account Passes
  - name: Account Skills
  - name: Addresses
  - name: Availability
  - name: Booking Bundles
  - name: Booking Passes
  - name: Booking Quota Grants
  - name: Bookings
  - name: Communities
  - name: Community Accounts
  - name: Community Invites
  - name: Customer Accounts
  - name: Favorites
  - name: Orders
  - name: Organizations
  - name: Plan Subscriptions
  - name: Properties
  - name: Queues
  - name: Queue Tickets
  - name: Resources
  - name: Services
  - name: Waitlist
paths:
  /api/v1/organizations/{organization_slug}/properties:
    parameters:
      - schema:
          type: string
        name: organization_slug
        in: path
        required: true
    get:
      tags:
        - Properties
        - Organizations
      summary: Get available properties
      description: >-
        This endpoint allows listing all available properties (for a given
        resource category).

        Properties can be used to filter resources by adding the following query
        params to any /resources endpoint:


        Comparison operator: `filter[properties][{propertyId}][o]={operator}` //
        operator: >=, =, <=, in


        Comparison value: `filter[properties][{propertyId}][v]={value}` //
        value: int|string|array
      operationId: get-organizations-record-properties
      parameters:
        - schema:
            type: string
          in: query
          name: filter[category]
          description: Filter properties which can be assigned to a resource category
        - name: filter[search]
          in: query
          schema:
            type: string
        - schema:
            type: string
          in: query
          name: filter[label]
        - schema:
            type: string
          in: query
          name: filter[icon]
        - schema:
            type: string
          in: query
          name: filter[value_type]
        - schema:
            type: boolean
          in: query
          name: filter[filterable]
        - schema:
            type: string
            enum:
              - resource_properties
          in: query
          name: include
        - schema:
            type: string
          in: query
          name: sort
      responses:
        '200':
          description: OK
          content:
            application/vnd.api+json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/properties.v1'
              examples:
                default:
                  value:
                    data:
                      - type: properties
                        id: '11'
                        attributes:
                          label: Barrier-free
                          icon: wheelchair
                          value_type: boolean
                          filterable: true
                          private: false
                        links:
                          self: https://b.anny.co/api/v1/properties/11
                        meta:
                          values:
                            - '1'
                      - type: properties
                        id: '21'
                        attributes:
                          label: Flip-Chart
                          icon: presentation
                          value_type: boolean
                          filterable: true
                          private: false
                        links:
                          self: https://b.anny.co/api/v1/properties/21
                        meta:
                          values:
                            - '1'
                            - '0'
                      - type: properties
                        id: '22'
                        attributes:
                          label: Beamer
                          icon: projector
                          value_type: boolean
                          filterable: true
                          private: false
                        links:
                          self: https://b.anny.co/api/v1/properties/22
                        meta:
                          values:
                            - '1'
                      - type: properties
                        id: '23'
                        attributes:
                          label: Capacity
                          icon: users
                          value_type: number
                          filterable: true
                          private: false
                        links:
                          self: https://b.anny.co/api/v1/properties/23
                        meta:
                          values:
                            - '10'
                            - '6'
                            - '12'
                            - '4'
                            - '1'
                            - '15'
                            - '2'
                            - '100'
                            - '30'
                            - '7'
                            - '5'
                            - '8'
                            - '20'
                            - '76'
                            - null
                            - '13'
                            - '50'
                            - '11'
                            - '18'
                            - '3'
                            - '22'
                            - '167'
                            - '98'
                            - '195'
                            - '94'
                            - '180'
                            - '150'
                            - '120'
                            - '99'
                            - '270'
                            - '44'
                            - '55'
                            - '24'
                            - '32'
                            - '36'
                            - '40'
                            - '16'
                            - '48'
                            - '34'
                            - '21'
                            - '14'
                            - '0'
                            - '17'
                            - '26'
                            - '63'
                            - '148'
                            - '60'
                            - '250'
                            - '700'
                            - '45'
                      - type: properties
                        id: '266'
                        attributes:
                          label: Floor
                          icon: layer-group
                          value_type: string
                          filterable: true
                          private: false
                        links:
                          self: https://b.anny.co/api/v1/properties/266
                        meta:
                          values:
                            - '1'
                            - 1 / Linker Gebäudeflügel
                            - EG
                            - 1. OG
                      - type: properties
                        id: '1622'
                        attributes:
                          label: Conference Speaker
                          icon: phone-office
                          value_type: boolean
                          filterable: true
                          private: true
                        links:
                          self: https://b.anny.co/api/v1/properties/1622
                        meta:
                          values:
                            - '0'
                      - type: properties
                        id: '1623'
                        attributes:
                          label: Beamer
                          icon: projector
                          value_type: boolean
                          filterable: true
                          private: true
                        links:
                          self: https://b.anny.co/api/v1/properties/1623
                        meta:
                          values:
                            - '0'
                      - type: properties
                        id: '1624'
                        attributes:
                          label: Conference Speaker
                          icon: phone-office
                          value_type: boolean
                          filterable: true
                          private: true
                        links:
                          self: https://b.anny.co/api/v1/properties/1624
                        meta:
                          values:
                            - '1'
        '404':
          description: Not Found
      security: []
components:
  schemas:
    properties.v1:
      $schema: https://json-schema.org/draft/2020-12/schema
      x-version: 1.1.0
      title: Property
      type: object
      description: >-
        A reusable property definition that can be assigned to resources with
        specific values.
      x-tags:
        - Models
      properties:
        id:
          type: string
        type:
          type: string
          default: propertys
        attributes:
          type: object
          properties:
            label:
              type: string
              description: Property label
            icon:
              type:
                - string
                - 'null'
              description: Icon identifier
            value_type:
              type: string
              enum:
                - text
                - number
                - boolean
                - select
              description: Value type
            filterable:
              type: boolean
              description: Whether this property is filterable
            private:
              type: boolean
              description: Whether this property is private
        links:
          $ref: '#/components/schemas/links.v1'
        relationships:
          type: object
          properties:
            resource_properties:
              type: object
              description: Resource assignments
              properties:
                data:
                  type: array
                  items:
                    type: object
                    properties:
                      type:
                        type: string
                      id:
                        type: string
                links:
                  $ref: '#/components/schemas/links.v1'
        meta:
          type: object
          properties:
            options:
              type: array
              description: Available options for select type
    links.v1:
      $schema: https://json-schema.org/draft/2020-12/schema
      x-version: 1.1.0
      title: ResourceLinks
      x-tags:
        - Models
      type: object
      description: JSON:API self-link object
      properties:
        self:
          type: string
          format: uri

````