ScrollX Tag Page

Help:Api Read Requests

0 posts0 sourcesWiki updated 3/4/2026
Browse Full Gallery →

About Help:Api Read Requests

These are API requests which use the HTTP GET or POST methods.

Limit

Read requests are unlimited for all user levels.

URL parameters

When doing a read through a GET request, the parameters must be passed in through the URL, and must use URL hash format (Help:Hash Format).

Body parameters

When doing a read through a POST request, the parameters must be passed in through the body. See the method override below for more information [1].

URL encoding

These parameters use URL hash encoding (Help:Hash Format).

  • Content-Type: [code]application/x-www-form-urlencoded[/code]
  • Format: PARAMETER=VALUE
  • Example: [code]search[name]=test&limit=20_method=get[/code]

JSON encoding

These parameters use JSON hash encoding [2].

  • Content-Type: [code]application/json[/code]
  • Format: { "OBJECT": { "PARAMETER": VALUE } }
  • Example: [code]{ "search": { "name": "test" }, "limit": 20}[/code]

Using POST for GET override

The POST method can be used to send data to endpoints that require the GET method, in such cases where the parameters must be sent in the body, such as the URL limit being exceeded.

URL encoding

Set the parameter [code]_method[/code] with the value "get".

JSON encoding

Set the [code]X-HTTP-Method-Override[/code] header with value "get".

See also

[1] https://www.w3resource.com/JSON/structures.php

Page 1