> ## Documentation Index > Fetch the complete documentation index at: https://www.bloxs.io/llms.txt > Use this file to discover all available pages before exploring further. # Get all scoring point time periods > Get all scoring point time periods in the system. ## OpenAPI ````json GET /api/v1/realestateobjects/scoringpointtotals/timeperiods { "openapi": "3.0.4", "info": { "title": "RealEstateObjects V1", "description": "Welcome to BETA version of the new RealEstateObjects API - intended for client public testing before the launch of the final version. During this BETA phase, we'll be improving the API based on specific client's feedbacks.", "version": "v1" }, "security": [ {} ], "tags": [ { "name": "Admin" }, { "name": "Buildings" }, { "name": "Complexes" }, { "name": "Generic" }, { "name": "Metadata" }, { "name": "PublishObjects" }, { "name": "ScoringPointTotals" }, { "name": "Sections" }, { "name": "Units" } ], "paths": { "/api/v1/realestateobjects/scoringpointtotals/timeperiods": { "get": { "tags": [ "Admin", "ScoringPointTotals" ], "summary": "Get all scoring point time periods", "description": "Get all scoring point time periods in the system.", "operationId": "GetScoringPointTimePeriods", "responses": { "200": { "description": "OK", "content": { "application/json": { "schema": { "type": "array", "items": { "$ref": "#/components/schemas/ScoringPointTimePeriod" } } } } } }, "x-d360-narrative-url": "

Get all scoring point time periods

This endpoint retrieves all scoring point time periods available in Bloxs.

These periods are defined by Dutch housing law and cannot be configured; they apply system-wide, not per object or client.

Integrators typically call this endpoint before submitting a scoring point total, to ensure the timePeriodTitle used matches an existing period.


Request Fields

This endpoint takes no request parameters.


Response Fields

Field

Type

Required

Description

timePeriodTitle

string

No

Title of an available scoring point time period, for example matching the timePeriodTitle expected by the Insert a scoring point total endpoint.

" } } }, "components": { "schemas": { "ScoringPointTimePeriod": { "type": "object", "properties": { "timePeriodTitle": { "type": "string", "nullable": true } }, "additionalProperties": false } } } } ````