Skip to main content

Order details

Retrieving all details from an specific order.

To request the details of an order, it is necessary to make a GET request with the following configuration;

URL

https://api.bembit.com/api/v1/orders/{id}

Method

GET

Params

Important!

The parameters for this request must be passed to the end-point via headers, and the id of the order being queried should be included in the URL of the request.

ParamsTypeDefault valuesDescription
apistringundefinedYour API Key
secretstringundefinedYour Secret
idstringundefinedThe number is automatically generated by the system when the order is first created.

cURL

curl -X 'GET' \
'https://api.bembit.com/api/v1/orders/{id}' \
-H 'accept: */*' \
-H 'api: [Your API]' \
-H 'secret: [Your secret]'

Server responses:

Status 200:

Success

Status 403:

Unauthorized

Status 404:

Order not found

See and test our API on Swagger.