Get ancillary results by bid IDs
curl --request GET \
--url https://api.trlyr.com/physical-assets/{physicalAssetID}/ancillary/results-by-bid-ids \
--header 'Authorization: <authorization>'import requests
url = "https://api.trlyr.com/physical-assets/{physicalAssetID}/ancillary/results-by-bid-ids"
headers = {"Authorization": "<authorization>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<authorization>'}};
fetch('https://api.trlyr.com/physical-assets/{physicalAssetID}/ancillary/results-by-bid-ids', 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.trlyr.com/physical-assets/{physicalAssetID}/ancillary/results-by-bid-ids",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <authorization>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.trlyr.com/physical-assets/{physicalAssetID}/ancillary/results-by-bid-ids"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<authorization>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.trlyr.com/physical-assets/{physicalAssetID}/ancillary/results-by-bid-ids")
.header("Authorization", "<authorization>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.trlyr.com/physical-assets/{physicalAssetID}/ancillary/results-by-bid-ids")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<authorization>'
response = http.request(request)
puts response.read_body[
{
"bidID": "11111111-1111-1111-1111-111111111111",
"exists": true,
"result": {
"bidID": "11111111-1111-1111-1111-111111111111",
"deliveryDay": "2025-11-11",
"product": "NEGPOS_00_04",
"accepted": true,
"acceptedCapacity": 1000,
"capacityPrice": 100.5,
"direction": "GRID_TO_BIDDER",
"energyPrice": 100.5,
"indivisible": true,
"offeredCapacity": 1000,
"settlementPrice": 100.5
}
}
]ancillary
Get ancillary results by bid IDs
GET
/
physical-assets
/
{physicalAssetID}
/
ancillary
/
results-by-bid-ids
Get ancillary results by bid IDs
curl --request GET \
--url https://api.trlyr.com/physical-assets/{physicalAssetID}/ancillary/results-by-bid-ids \
--header 'Authorization: <authorization>'import requests
url = "https://api.trlyr.com/physical-assets/{physicalAssetID}/ancillary/results-by-bid-ids"
headers = {"Authorization": "<authorization>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<authorization>'}};
fetch('https://api.trlyr.com/physical-assets/{physicalAssetID}/ancillary/results-by-bid-ids', 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.trlyr.com/physical-assets/{physicalAssetID}/ancillary/results-by-bid-ids",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <authorization>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.trlyr.com/physical-assets/{physicalAssetID}/ancillary/results-by-bid-ids"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<authorization>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.trlyr.com/physical-assets/{physicalAssetID}/ancillary/results-by-bid-ids")
.header("Authorization", "<authorization>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.trlyr.com/physical-assets/{physicalAssetID}/ancillary/results-by-bid-ids")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<authorization>'
response = http.request(request)
puts response.read_body[
{
"bidID": "11111111-1111-1111-1111-111111111111",
"exists": true,
"result": {
"bidID": "11111111-1111-1111-1111-111111111111",
"deliveryDay": "2025-11-11",
"product": "NEGPOS_00_04",
"accepted": true,
"acceptedCapacity": 1000,
"capacityPrice": 100.5,
"direction": "GRID_TO_BIDDER",
"energyPrice": 100.5,
"indivisible": true,
"offeredCapacity": 1000,
"settlementPrice": 100.5
}
}
]Headers
Access token
Path Parameters
Physical asset ID
Query Parameters
Comma-separated bid UUIDs
Response
OK
Example:
"11111111-1111-1111-1111-111111111111"
Example:
true
Hide child attributes
Hide child attributes
Example:
"11111111-1111-1111-1111-111111111111"
Example:
"2025-11-11"
Example:
"NEGPOS_00_04"
Example:
true
In kW
Example:
1000
In Euro
Example:
100.5
Example:
"GRID_TO_BIDDER"
In Euro
Example:
100.5
Example:
true
In kW
Example:
1000
In Euro
Example:
100.5
Last modified on August 21, 2026