API Introduction
đ ď¸ Beta Notice
đââď¸ Introduction
⥠Requests
METHOD | USAGE |
---|---|
GET | To fetch information about a resource, utilize the GET method, which returns the data in the form of a JSON object. GET methods are solely for read-only purposes and have no effect on any resources. |
POST | To create a new object, send a POST request using the required HTTP method. All necessary attributes should be included in the request body, which must be encoded as JSON. |
PATCH | Some resources support partial modification with PATCH, which modifies specific attributes without changing the rest. |
PUT | The PUT method is used to completely replace an existing resource or create a new one if it doesn't exist. When sending a PUT request, include all attributes necessary for the resource in the request body, encoded as JSON. |
DELETE | To delete a resource and remove it from both your account and environment, you should utilize the DELETE method. This will delete the specified object if it is present. If the object cannot be found, the operation will return a response indicating that it was not found. |
đ˘ Response Codes
RESPONSE | DESCRIPTION |
---|---|
200 OK | The requested information is provided. |
201 Created | Resource is created. |
202 Accepted | The resource was updated. |
204 No Content | Successful request, no response (not needed). |
401 Unauthorized | Not authorized (no valid token provided). |
403 Forbidden | You do not have access to this resource. |
404 Not Found | No results founds. |
422 Unprocessable Content | Validation error. |
423 Locked | The resource is locked at the moment. |
429 Too Many Requests | API rate limit exceeded. |
500 Internal Server Error | Server-side issue. |
â Rate limit
Indicates the maximum number of requests allowed within a minute.
Shows the number of remaining requests you have before reaching the rate limit.
If you are already rate limited, this header specifies the time (in seconds) you need to wait before retrying your request.
If you are already rate limited, this header indicates the Unix epoch time when you can send your request again.
đď¸ Pagination and Links
data
array, along with links
and meta
objects that provide pagination details.?per_page=
to your request URL with the desired number of items (maximum 100). For example: ?per_page=25
.Links Object
links
object provides URLs for navigating between pages:first
: URL of the first page.prev
: URL of the previous page.next
: URL of the next page.last
: URL of the last page.null
.Example
"links": {
  "first": "https://api.vpsbg.eu/v1/servers?page=1",
  "last": "https://api.vpsbg.eu/v1/servers?page=1",
  "prev": null,
  "next": null
}
Meta Object
meta
object contains additional pagination information:current_page
: Current page number.from
: Starting index of the items returned.last_page
: Total number of pages.links
: Pagination links.path
: Base URL.per_page
: Number of items per page.to
: Ending index of the items returned.total
: Total number of available items.Example
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "https://api.vpsbg.eu/v1/servers?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Next »",
"active": false
}
],
"path": "https://api.vpsbg.eu/v1/servers",
"per_page": 20,
"to": 1,
"total": 1
}
Controlling Pagination
page
: Specify the page number. Example: ?page=2
per_page
: Specify items per page. Example: ?per_page=25
Example Request
đŠ Permissions
Modified at 2024-10-05 07:15:24