For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get Configuration

This method allows the reading of geometry dash configuration.

Request

name
value

url

method

GET

scope

geometry_dash_mod:configuration:read

Headers Parameters explained:

name
value
description

Authorization

Bearer {auth token}

Response

Specific Errors:

http status code
reason

404

User doesn't have any geometry dash configurations

The response body in case 200 http status is a geometry dash mod configution .

Curl Request Example

curl --request GET \
  --url https://dev.pulsoid.net/api/v1/geometry-dash-mod/configuration \
  --header 'Authorization: Bearer 47ee2a9f-624d-4ed3-84db-8104b229f21c'

Response Example

{
  "configuration": {
    "disable_start": true,
    "enable_death": null,
    "death_bpm": 1,
    "scale": null,
    "position": null,
    "custom_x": null,
    "custom_y": null,
    "heart_pos": null,
    "death_pos": null,
    "enable_color_desaturation": null,
    "desaturation_bpm_start": null,
    "desaturation_bpm_end": null
  }
}

Last updated