Get execution plan for listing orders
curl --request POST \
--url https://api.lootexplus.com/v1/orders/list \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"chainId": 1868,
"accountAddress": "0x7D878A527e86321aECd80A493E584117A907A0AB",
"items": [
{
"tokenAddress": "0xfc8e7bda94874f6baa591dd70af0fda1fca201ab",
"tokenType": "ERC721",
"tokenId": "142",
"unitPrice": "0.1",
"quantity": "1",
"currencyAddress": "0x4200000000000000000000000000000000000006",
"currencySymbol": "WETH",
"currencyDecimals": 18,
"startTime": 1753328679,
"endTime": 1911066278,
"fees": [
{
"recipient": "0x7D878A527e86321aECd80A493E584117A907A0AB",
"bps": 250
}
]
}
]
}
'import requests
url = "https://api.lootexplus.com/v1/orders/list"
payload = {
"chainId": 1868,
"accountAddress": "0x7D878A527e86321aECd80A493E584117A907A0AB",
"items": [
{
"tokenAddress": "0xfc8e7bda94874f6baa591dd70af0fda1fca201ab",
"tokenType": "ERC721",
"tokenId": "142",
"unitPrice": "0.1",
"quantity": "1",
"currencyAddress": "0x4200000000000000000000000000000000000006",
"currencySymbol": "WETH",
"currencyDecimals": 18,
"startTime": 1753328679,
"endTime": 1911066278,
"fees": [
{
"recipient": "0x7D878A527e86321aECd80A493E584117A907A0AB",
"bps": 250
}
]
}
]
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
chainId: 1868,
accountAddress: '0x7D878A527e86321aECd80A493E584117A907A0AB',
items: [
{
tokenAddress: '0xfc8e7bda94874f6baa591dd70af0fda1fca201ab',
tokenType: 'ERC721',
tokenId: '142',
unitPrice: '0.1',
quantity: '1',
currencyAddress: '0x4200000000000000000000000000000000000006',
currencySymbol: 'WETH',
currencyDecimals: 18,
startTime: 1753328679,
endTime: 1911066278,
fees: [{recipient: '0x7D878A527e86321aECd80A493E584117A907A0AB', bps: 250}]
}
]
})
};
fetch('https://api.lootexplus.com/v1/orders/list', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.lootexplus.com/v1/orders/list",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'chainId' => 1868,
'accountAddress' => '0x7D878A527e86321aECd80A493E584117A907A0AB',
'items' => [
[
'tokenAddress' => '0xfc8e7bda94874f6baa591dd70af0fda1fca201ab',
'tokenType' => 'ERC721',
'tokenId' => '142',
'unitPrice' => '0.1',
'quantity' => '1',
'currencyAddress' => '0x4200000000000000000000000000000000000006',
'currencySymbol' => 'WETH',
'currencyDecimals' => 18,
'startTime' => 1753328679,
'endTime' => 1911066278,
'fees' => [
[
'recipient' => '0x7D878A527e86321aECd80A493E584117A907A0AB',
'bps' => 250
]
]
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.lootexplus.com/v1/orders/list"
payload := strings.NewReader("{\n \"chainId\": 1868,\n \"accountAddress\": \"0x7D878A527e86321aECd80A493E584117A907A0AB\",\n \"items\": [\n {\n \"tokenAddress\": \"0xfc8e7bda94874f6baa591dd70af0fda1fca201ab\",\n \"tokenType\": \"ERC721\",\n \"tokenId\": \"142\",\n \"unitPrice\": \"0.1\",\n \"quantity\": \"1\",\n \"currencyAddress\": \"0x4200000000000000000000000000000000000006\",\n \"currencySymbol\": \"WETH\",\n \"currencyDecimals\": 18,\n \"startTime\": 1753328679,\n \"endTime\": 1911066278,\n \"fees\": [\n {\n \"recipient\": \"0x7D878A527e86321aECd80A493E584117A907A0AB\",\n \"bps\": 250\n }\n ]\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.lootexplus.com/v1/orders/list")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"chainId\": 1868,\n \"accountAddress\": \"0x7D878A527e86321aECd80A493E584117A907A0AB\",\n \"items\": [\n {\n \"tokenAddress\": \"0xfc8e7bda94874f6baa591dd70af0fda1fca201ab\",\n \"tokenType\": \"ERC721\",\n \"tokenId\": \"142\",\n \"unitPrice\": \"0.1\",\n \"quantity\": \"1\",\n \"currencyAddress\": \"0x4200000000000000000000000000000000000006\",\n \"currencySymbol\": \"WETH\",\n \"currencyDecimals\": 18,\n \"startTime\": 1753328679,\n \"endTime\": 1911066278,\n \"fees\": [\n {\n \"recipient\": \"0x7D878A527e86321aECd80A493E584117A907A0AB\",\n \"bps\": 250\n }\n ]\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.lootexplus.com/v1/orders/list")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"chainId\": 1868,\n \"accountAddress\": \"0x7D878A527e86321aECd80A493E584117A907A0AB\",\n \"items\": [\n {\n \"tokenAddress\": \"0xfc8e7bda94874f6baa591dd70af0fda1fca201ab\",\n \"tokenType\": \"ERC721\",\n \"tokenId\": \"142\",\n \"unitPrice\": \"0.1\",\n \"quantity\": \"1\",\n \"currencyAddress\": \"0x4200000000000000000000000000000000000006\",\n \"currencySymbol\": \"WETH\",\n \"currencyDecimals\": 18,\n \"startTime\": 1753328679,\n \"endTime\": 1911066278,\n \"fees\": [\n {\n \"recipient\": \"0x7D878A527e86321aECd80A493E584117A907A0AB\",\n \"bps\": 250\n }\n ]\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"steps": [
{
"id": "approve-tokens",
"items": [
{
"type": "transaction",
"data": {
"to": "0x247369e90ef44b845865b3d2763c8857e9F27593",
"data": "0xa22cb465000000000000000000000000a313d4f11e69a320a68167e7aafacea8f34135930000000000000000000000000000000000000000000000000000000000000001"
},
"token": "0x247369e90ef44b845865b3d2763c8857e9F27593",
"identifierOrCriteria": "0"
}
]
},
{
"id": "create-orders",
"needEncodeProofAndSignature": false,
"items": [
{
"type": "signTypedData",
"data": {
"domain": {
"name": "Seaport",
"version": "1.6",
"chainId": 1868,
"verifyingContract": "0xA313D4f11e69A320A68167E7aAfacEA8F3413593"
},
"types": {
"OrderComponents": [
{
"name": "offerer",
"type": "address"
},
{
"name": "zone",
"type": "address"
},
{
"name": "offer",
"type": "OfferItem[]"
},
{
"name": "consideration",
"type": "ConsiderationItem[]"
},
{
"name": "orderType",
"type": "uint8"
},
{
"name": "startTime",
"type": "uint256"
},
{
"name": "endTime",
"type": "uint256"
},
{
"name": "zoneHash",
"type": "bytes32"
},
{
"name": "salt",
"type": "uint256"
},
{
"name": "conduitKey",
"type": "bytes32"
},
{
"name": "counter",
"type": "uint256"
}
],
"OfferItem": [
{
"name": "itemType",
"type": "uint8"
},
{
"name": "token",
"type": "address"
},
{
"name": "identifierOrCriteria",
"type": "uint256"
},
{
"name": "startAmount",
"type": "uint256"
},
{
"name": "endAmount",
"type": "uint256"
}
],
"ConsiderationItem": [
{
"name": "itemType",
"type": "uint8"
},
{
"name": "token",
"type": "address"
},
{
"name": "identifierOrCriteria",
"type": "uint256"
},
{
"name": "startAmount",
"type": "uint256"
},
{
"name": "endAmount",
"type": "uint256"
},
{
"name": "recipient",
"type": "address"
}
]
},
"message": {
"offerer": "0x7D878A527e86321aECd80A493E584117A907A0AB",
"zone": "0x0000000000000000000000000000000000000000",
"zoneHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"startTime": "1754901647",
"endTime": "1754988047",
"orderType": 1,
"offer": [
{
"itemType": 2,
"token": "0x247369e90ef44b845865b3d2763c8857e9F27593",
"identifierOrCriteria": "0",
"startAmount": "1",
"endAmount": "1"
}
],
"consideration": [
{
"itemType": 0,
"token": "0x0000000000000000000000000000000000000000",
"identifierOrCriteria": "0",
"startAmount": "980000000000000000",
"endAmount": "980000000000000000",
"recipient": "0x7D878A527e86321aECd80A493E584117A907A0AB"
},
{
"itemType": 0,
"token": "0x0000000000000000000000000000000000000000",
"identifierOrCriteria": "0",
"startAmount": "20000000000000000",
"endAmount": "20000000000000000",
"recipient": "0x44bC1E612e11d0Acd2c43218Ea55717aC28e3a40"
}
],
"totalOriginalConsiderationItems": 2,
"salt": "0x000000000000000000000000000000000000000000000000b0d3d3058c34fef6",
"conduitKey": "0x0000000000000000000000000000000000000000000000000000000000000000",
"counter": "0"
},
"primaryType": "OrderComponents"
}
},
{
"type": "post",
"endpoint": "/v1/orders",
"body": {
"data": [
{
"offerer": "0x7D878A527e86321aECd80A493E584117A907A0AB",
"zone": "0x0000000000000000000000000000000000000000",
"zoneHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"startTime": "1754901647",
"endTime": "1754988047",
"orderType": 1,
"offer": [
{
"itemType": 2,
"token": "0x247369e90ef44b845865b3d2763c8857e9F27593",
"identifierOrCriteria": "0",
"startAmount": "1",
"endAmount": "1"
}
],
"consideration": [
{
"itemType": 0,
"token": "0x0000000000000000000000000000000000000000",
"identifierOrCriteria": "0",
"startAmount": "980000000000000000",
"endAmount": "980000000000000000",
"recipient": "0x7D878A527e86321aECd80A493E584117A907A0AB"
},
{
"itemType": 0,
"token": "0x0000000000000000000000000000000000000000",
"identifierOrCriteria": "0",
"startAmount": "20000000000000000",
"endAmount": "20000000000000000",
"recipient": "0x44bC1E612e11d0Acd2c43218Ea55717aC28e3a40"
}
],
"totalOriginalConsiderationItems": 2,
"salt": "0x000000000000000000000000000000000000000000000000b0d3d3058c34fef6",
"conduitKey": "0x0000000000000000000000000000000000000000000000000000000000000000",
"counter": "0",
"category": "listing",
"exchangeAddress": "0xA313D4f11e69A320A68167E7aAfacEA8F3413593",
"chainId": "1868",
"hash": "0x06843bdf43d1a9e9ab9483476083d425ca6db0cc604a5aeecaf7af82c559c398",
"signature": "0x0000000000000000000000000000000000000000000000000000000000000000"
}
],
"signature": "0x0000000000000000000000000000000000000000000000000000000000000000"
}
}
]
}
]
}Orders
List Orders
Returns the execution plan required to list orders on the exchange.
POST
/
v1
/
orders
/
list
Get execution plan for listing orders
curl --request POST \
--url https://api.lootexplus.com/v1/orders/list \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"chainId": 1868,
"accountAddress": "0x7D878A527e86321aECd80A493E584117A907A0AB",
"items": [
{
"tokenAddress": "0xfc8e7bda94874f6baa591dd70af0fda1fca201ab",
"tokenType": "ERC721",
"tokenId": "142",
"unitPrice": "0.1",
"quantity": "1",
"currencyAddress": "0x4200000000000000000000000000000000000006",
"currencySymbol": "WETH",
"currencyDecimals": 18,
"startTime": 1753328679,
"endTime": 1911066278,
"fees": [
{
"recipient": "0x7D878A527e86321aECd80A493E584117A907A0AB",
"bps": 250
}
]
}
]
}
'import requests
url = "https://api.lootexplus.com/v1/orders/list"
payload = {
"chainId": 1868,
"accountAddress": "0x7D878A527e86321aECd80A493E584117A907A0AB",
"items": [
{
"tokenAddress": "0xfc8e7bda94874f6baa591dd70af0fda1fca201ab",
"tokenType": "ERC721",
"tokenId": "142",
"unitPrice": "0.1",
"quantity": "1",
"currencyAddress": "0x4200000000000000000000000000000000000006",
"currencySymbol": "WETH",
"currencyDecimals": 18,
"startTime": 1753328679,
"endTime": 1911066278,
"fees": [
{
"recipient": "0x7D878A527e86321aECd80A493E584117A907A0AB",
"bps": 250
}
]
}
]
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
chainId: 1868,
accountAddress: '0x7D878A527e86321aECd80A493E584117A907A0AB',
items: [
{
tokenAddress: '0xfc8e7bda94874f6baa591dd70af0fda1fca201ab',
tokenType: 'ERC721',
tokenId: '142',
unitPrice: '0.1',
quantity: '1',
currencyAddress: '0x4200000000000000000000000000000000000006',
currencySymbol: 'WETH',
currencyDecimals: 18,
startTime: 1753328679,
endTime: 1911066278,
fees: [{recipient: '0x7D878A527e86321aECd80A493E584117A907A0AB', bps: 250}]
}
]
})
};
fetch('https://api.lootexplus.com/v1/orders/list', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.lootexplus.com/v1/orders/list",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'chainId' => 1868,
'accountAddress' => '0x7D878A527e86321aECd80A493E584117A907A0AB',
'items' => [
[
'tokenAddress' => '0xfc8e7bda94874f6baa591dd70af0fda1fca201ab',
'tokenType' => 'ERC721',
'tokenId' => '142',
'unitPrice' => '0.1',
'quantity' => '1',
'currencyAddress' => '0x4200000000000000000000000000000000000006',
'currencySymbol' => 'WETH',
'currencyDecimals' => 18,
'startTime' => 1753328679,
'endTime' => 1911066278,
'fees' => [
[
'recipient' => '0x7D878A527e86321aECd80A493E584117A907A0AB',
'bps' => 250
]
]
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.lootexplus.com/v1/orders/list"
payload := strings.NewReader("{\n \"chainId\": 1868,\n \"accountAddress\": \"0x7D878A527e86321aECd80A493E584117A907A0AB\",\n \"items\": [\n {\n \"tokenAddress\": \"0xfc8e7bda94874f6baa591dd70af0fda1fca201ab\",\n \"tokenType\": \"ERC721\",\n \"tokenId\": \"142\",\n \"unitPrice\": \"0.1\",\n \"quantity\": \"1\",\n \"currencyAddress\": \"0x4200000000000000000000000000000000000006\",\n \"currencySymbol\": \"WETH\",\n \"currencyDecimals\": 18,\n \"startTime\": 1753328679,\n \"endTime\": 1911066278,\n \"fees\": [\n {\n \"recipient\": \"0x7D878A527e86321aECd80A493E584117A907A0AB\",\n \"bps\": 250\n }\n ]\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.lootexplus.com/v1/orders/list")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"chainId\": 1868,\n \"accountAddress\": \"0x7D878A527e86321aECd80A493E584117A907A0AB\",\n \"items\": [\n {\n \"tokenAddress\": \"0xfc8e7bda94874f6baa591dd70af0fda1fca201ab\",\n \"tokenType\": \"ERC721\",\n \"tokenId\": \"142\",\n \"unitPrice\": \"0.1\",\n \"quantity\": \"1\",\n \"currencyAddress\": \"0x4200000000000000000000000000000000000006\",\n \"currencySymbol\": \"WETH\",\n \"currencyDecimals\": 18,\n \"startTime\": 1753328679,\n \"endTime\": 1911066278,\n \"fees\": [\n {\n \"recipient\": \"0x7D878A527e86321aECd80A493E584117A907A0AB\",\n \"bps\": 250\n }\n ]\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.lootexplus.com/v1/orders/list")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"chainId\": 1868,\n \"accountAddress\": \"0x7D878A527e86321aECd80A493E584117A907A0AB\",\n \"items\": [\n {\n \"tokenAddress\": \"0xfc8e7bda94874f6baa591dd70af0fda1fca201ab\",\n \"tokenType\": \"ERC721\",\n \"tokenId\": \"142\",\n \"unitPrice\": \"0.1\",\n \"quantity\": \"1\",\n \"currencyAddress\": \"0x4200000000000000000000000000000000000006\",\n \"currencySymbol\": \"WETH\",\n \"currencyDecimals\": 18,\n \"startTime\": 1753328679,\n \"endTime\": 1911066278,\n \"fees\": [\n {\n \"recipient\": \"0x7D878A527e86321aECd80A493E584117A907A0AB\",\n \"bps\": 250\n }\n ]\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"steps": [
{
"id": "approve-tokens",
"items": [
{
"type": "transaction",
"data": {
"to": "0x247369e90ef44b845865b3d2763c8857e9F27593",
"data": "0xa22cb465000000000000000000000000a313d4f11e69a320a68167e7aafacea8f34135930000000000000000000000000000000000000000000000000000000000000001"
},
"token": "0x247369e90ef44b845865b3d2763c8857e9F27593",
"identifierOrCriteria": "0"
}
]
},
{
"id": "create-orders",
"needEncodeProofAndSignature": false,
"items": [
{
"type": "signTypedData",
"data": {
"domain": {
"name": "Seaport",
"version": "1.6",
"chainId": 1868,
"verifyingContract": "0xA313D4f11e69A320A68167E7aAfacEA8F3413593"
},
"types": {
"OrderComponents": [
{
"name": "offerer",
"type": "address"
},
{
"name": "zone",
"type": "address"
},
{
"name": "offer",
"type": "OfferItem[]"
},
{
"name": "consideration",
"type": "ConsiderationItem[]"
},
{
"name": "orderType",
"type": "uint8"
},
{
"name": "startTime",
"type": "uint256"
},
{
"name": "endTime",
"type": "uint256"
},
{
"name": "zoneHash",
"type": "bytes32"
},
{
"name": "salt",
"type": "uint256"
},
{
"name": "conduitKey",
"type": "bytes32"
},
{
"name": "counter",
"type": "uint256"
}
],
"OfferItem": [
{
"name": "itemType",
"type": "uint8"
},
{
"name": "token",
"type": "address"
},
{
"name": "identifierOrCriteria",
"type": "uint256"
},
{
"name": "startAmount",
"type": "uint256"
},
{
"name": "endAmount",
"type": "uint256"
}
],
"ConsiderationItem": [
{
"name": "itemType",
"type": "uint8"
},
{
"name": "token",
"type": "address"
},
{
"name": "identifierOrCriteria",
"type": "uint256"
},
{
"name": "startAmount",
"type": "uint256"
},
{
"name": "endAmount",
"type": "uint256"
},
{
"name": "recipient",
"type": "address"
}
]
},
"message": {
"offerer": "0x7D878A527e86321aECd80A493E584117A907A0AB",
"zone": "0x0000000000000000000000000000000000000000",
"zoneHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"startTime": "1754901647",
"endTime": "1754988047",
"orderType": 1,
"offer": [
{
"itemType": 2,
"token": "0x247369e90ef44b845865b3d2763c8857e9F27593",
"identifierOrCriteria": "0",
"startAmount": "1",
"endAmount": "1"
}
],
"consideration": [
{
"itemType": 0,
"token": "0x0000000000000000000000000000000000000000",
"identifierOrCriteria": "0",
"startAmount": "980000000000000000",
"endAmount": "980000000000000000",
"recipient": "0x7D878A527e86321aECd80A493E584117A907A0AB"
},
{
"itemType": 0,
"token": "0x0000000000000000000000000000000000000000",
"identifierOrCriteria": "0",
"startAmount": "20000000000000000",
"endAmount": "20000000000000000",
"recipient": "0x44bC1E612e11d0Acd2c43218Ea55717aC28e3a40"
}
],
"totalOriginalConsiderationItems": 2,
"salt": "0x000000000000000000000000000000000000000000000000b0d3d3058c34fef6",
"conduitKey": "0x0000000000000000000000000000000000000000000000000000000000000000",
"counter": "0"
},
"primaryType": "OrderComponents"
}
},
{
"type": "post",
"endpoint": "/v1/orders",
"body": {
"data": [
{
"offerer": "0x7D878A527e86321aECd80A493E584117A907A0AB",
"zone": "0x0000000000000000000000000000000000000000",
"zoneHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"startTime": "1754901647",
"endTime": "1754988047",
"orderType": 1,
"offer": [
{
"itemType": 2,
"token": "0x247369e90ef44b845865b3d2763c8857e9F27593",
"identifierOrCriteria": "0",
"startAmount": "1",
"endAmount": "1"
}
],
"consideration": [
{
"itemType": 0,
"token": "0x0000000000000000000000000000000000000000",
"identifierOrCriteria": "0",
"startAmount": "980000000000000000",
"endAmount": "980000000000000000",
"recipient": "0x7D878A527e86321aECd80A493E584117A907A0AB"
},
{
"itemType": 0,
"token": "0x0000000000000000000000000000000000000000",
"identifierOrCriteria": "0",
"startAmount": "20000000000000000",
"endAmount": "20000000000000000",
"recipient": "0x44bC1E612e11d0Acd2c43218Ea55717aC28e3a40"
}
],
"totalOriginalConsiderationItems": 2,
"salt": "0x000000000000000000000000000000000000000000000000b0d3d3058c34fef6",
"conduitKey": "0x0000000000000000000000000000000000000000000000000000000000000000",
"counter": "0",
"category": "listing",
"exchangeAddress": "0xA313D4f11e69A320A68167E7aAfacEA8F3413593",
"chainId": "1868",
"hash": "0x06843bdf43d1a9e9ab9483476083d425ca6db0cc604a5aeecaf7af82c559c398",
"signature": "0x0000000000000000000000000000000000000000000000000000000000000000"
}
],
"signature": "0x0000000000000000000000000000000000000000000000000000000000000000"
}
}
]
}
]
}Authorizations
Body
application/json
Response
200 - application/json
Order listing execution plan
Execution steps
Show child attributes
Show child attributes