Generated from the current FB API OpenAPI schema. View OpenAPI

API Reference

GET /v1/orders/{orderId}

Get order

按订单 ID 查询单个订单详情。

Base URL https://api.jd.io
Auth Bearer API Key
Group Orders

Parameters

NameLocationTypeRequiredConstraints
orderIdpathstringyesminLength: 1

Request body

This endpoint does not accept a JSON request body.

Responses

200 OK
400 Bad Request
401 Unauthorized
404 Not Found
502 Upstream Error

Examples

cURL
curl -X GET 'https://api.jd.io/v1/orders/<ORDER_ID>' \
  -H 'Authorization: Bearer <USER_API_KEY>'
200 Response
{
	"ok": true,
	"data": {
		"userId": "user_123",
		"address": "0x0000000000000000000000000000000000000000",
		"funder_address": "0x0000000000000000000000000000000000000000"
	}
}