GET One pool offline fetch errors by pool id
GET All pool offline fetch errors OData
GET One pool offline fetch errors by pool id OData
GET All pool offline fetch errors
Returns all pool offline fetch errors.
GET /api/core/pools/offlinefetcherrors
👨💻 Code samples
- Node.js
- Python
- Rust
const CBI = await new CardanoBI({ apiKey: 'YOUR-KEY', apiSecret: 'YOUR-SECRET' });
const offlinefetcherrors = await CBI.core.pools.offlinefetcherrors_();
console.log(offlinefetcherrors);
CBI = CardanoBI(apiKey='YOUR-KEY', apiSecret='YOUR-SECRET' });
offlinefetcherrors = await CBI.core.pools.offlinefetcherrors_();
print(offlinefetcherrors);
let CBI = CardanoBI::new(Some("YOUR-KEY"), Some("YOUR-SECRET")).await.expect("Failed to initialize CardanoBI");
let fetcherrors_offlinefetcherrors = CBI.core.pools.offlinefetcherrors_(HashMap::new()).await.expect("Failed to call endpoint");
println!("fetcherrors_offlinefetcherrors: {:?}", fetcherrors_offlinefetcherrors);
💌 Response Codes
- 200
- 400
- 401
- 402
- 403
- 404
- 429
OK: Successful request.
[
{
"id": 1,
"pool_id": 78,
"fetch_time": "2023-02-05T00:10:14.241245",
"pmr_id": 82,
"fetch_error": "HTTP Response from https://polypool.io/mama.json resulted in HTTP status code : 404 Not Found",
"retry_count": 0
},
"...",
{
"id": 20,
"pool_id": 270,
"fetch_time": "2023-02-05T00:10:14.241245",
"pmr_id": 324,
"fetch_error": "HTTP Response from https://tinyurl.com/bloom-small resulted in HTTP status code : 403 Forbidden",
"retry_count": 0
}
]
Bad Request: The request was unacceptable, often due to missing a required parameter.
Response schema is undefined.
Unauthorized: No valid API key provided.
Response schema is undefined.
Quota Exceeded: This API key has reached its usage limit on request.
Response schema is undefined.
Access Denied: The request is missing a valid API key or token.
Response schema is undefined.
Not Found: The requested resource cannot be found.
Response schema is undefined.
Too Many Requests: This API key has reached its rate limit.
Response schema is undefined.
💌 Response Schemas
- 200
- 400
- 401
- 402
- 403
- 404
- 429
Status Code 200
Name | Type | Description |
---|---|---|
id | integer(int64) | The pool offline fetch error unique identifier. |
pool_id | integer(int64) | The PoolHash table index for the pool this offline fetch error refers. |
fetch_time | string(date-time) | The UTC time stamp of the error. |
pmr_id | integer(int64) | The PoolMetadataRef table index for this offline data. |
fetch_error | string | The text of the error. |
retry_count | integer(int32) | The number of retries. |
Status Code 400
Name | Type | Description |
---|
Response schema is undefined.
Status Code 401
Name | Type | Description |
---|
Response schema is undefined.
Status Code 402
Name | Type | Description |
---|
Response schema is undefined.
Status Code 403
Name | Type | Description |
---|
Response schema is undefined.
Status Code 404
Name | Type | Description |
---|
Response schema is undefined.
Status Code 429
Name | Type | Description |
---|
Response schema is undefined.
GET One pool offline fetch errors by pool id
Returns the offline fetch errors for one pool given its unique identifier.
GET /api/core/pools/{pool_id}/offlinefetcherrors
🎰 Parameters
Name | Description | In | Type | Required |
---|---|---|---|---|
pool_id | Pool unique identifier | path | integer | true |
👨💻 Code samples
- Node.js
- Python
- Rust
const CBI = await new CardanoBI({ apiKey: 'YOUR-KEY', apiSecret: 'YOUR-SECRET' });
const offlinefetcherrors = await CBI.core.pools.offlinefetcherrors_({ pool_id: 4268 });
console.log(offlinefetcherrors);
CBI = CardanoBI(apiKey='YOUR-KEY', apiSecret='YOUR-SECRET' });
offlinefetcherrors = await CBI.core.pools.offlinefetcherrors_(pool_id=4268);
print(offlinefetcherrors);
let CBI = CardanoBI::new(Some("YOUR-KEY"), Some("YOUR-SECRET")).await.expect("Failed to initialize CardanoBI");
let fetcherrors_offlinefetcherrors = CBI.core.pools.offlinefetcherrors_(Some(4268), HashMap::new()).await.expect("Failed to call endpoint");
println!("fetcherrors_offlinefetcherrors: {:?}", fetcherrors_offlinefetcherrors);
💌 Response Codes
- 200
- 400
- 401
- 402
- 403
- 404
- 429
OK: Successful request.
[
{
"id": 16620,
"pool_id": 4268,
"fetch_time": "2023-02-06T00:16:37.343007",
"pmr_id": 25193,
"fetch_error": "Hash mismatch from when fetching metadata from https://bit.ly/3nnt1ax. Expected 446a2fc88b19a288f2fb6da512922653c9942000ada10c846d71e48bcea74e8a but got 5f6583fb9515eb9df15715d940205eeac0c2a53e5c83c6eb4276a00a98db8e02.",
"retry_count": 0
},
"...",
{
"id": 73468,
"pool_id": 4268,
"fetch_time": "2023-02-24T22:36:23.174784",
"pmr_id": 25193,
"fetch_error": "URL parse error from for pool1y24nj4qdkg35nvvnfawukauggsxrxuy74876cplmxsee29w5axc resulted in : InvalidUrlException \"pool1y24nj4qdkg35nvvnfawukauggsxrxuy74876cplmxsee29w5axc\" \"Invalid URL\"",
"retry_count": 19
}
]
Bad Request: The request was unacceptable, often due to missing a required parameter.
Response schema is undefined.
Unauthorized: No valid API key provided.
Response schema is undefined.
Quota Exceeded: This API key has reached its usage limit on request.
Response schema is undefined.
Access Denied: The request is missing a valid API key or token.
Response schema is undefined.
Not Found: The requested resource cannot be found.
Response schema is undefined.
Too Many Requests: This API key has reached its rate limit.
Response schema is undefined.
💌 Response Schemas
- 200
- 400
- 401
- 402
- 403
- 404
- 429
Status Code 200
Name | Type | Description |
---|---|---|
id | integer(int64) | The pool offline fetch error unique identifier. |
pool_id | integer(int64) | The PoolHash table index for the pool this offline fetch error refers. |
fetch_time | string(date-time) | The UTC time stamp of the error. |
pmr_id | integer(int64) | The PoolMetadataRef table index for this offline data. |
fetch_error | string | The text of the error. |
retry_count | integer(int32) | The number of retries. |
Status Code 400
Name | Type | Description |
---|
Response schema is undefined.
Status Code 401
Name | Type | Description |
---|
Response schema is undefined.
Status Code 402
Name | Type | Description |
---|
Response schema is undefined.
Status Code 403
Name | Type | Description |
---|
Response schema is undefined.
Status Code 404
Name | Type | Description |
---|
Response schema is undefined.
Status Code 429
Name | Type | Description |
---|
Response schema is undefined.
GET All pool offline fetch errors OData
Returns all pool offline fetch errors.
GET /api/core/odata/poolsofflinefetcherrors
👨💻 Code samples
- Node.js
- Python
- Rust
const CBI = await new CardanoBI({ apiKey: 'YOUR-KEY', apiSecret: 'YOUR-SECRET' });
const poolsofflinefetcherrors = await CBI.core.poolsofflinefetcherrors_({ "odata": true });
console.log(poolsofflinefetcherrors);
CBI = CardanoBI(apiKey='YOUR-KEY', apiSecret='YOUR-SECRET' });
poolsofflinefetcherrors = await CBI.core.poolsofflinefetcherrors_(odata=true);
print(poolsofflinefetcherrors);
let CBI = CardanoBI::new(Some("YOUR-KEY"), Some("YOUR-SECRET")).await.expect("Failed to initialize CardanoBI");
let poolsofflinefetcherrors = CBI.core.poolsofflinefetcherrors_(HashMap::from([("odata", "true")])).await.expect("Failed to call endpoint");
println!("poolsofflinefetcherrors: {:?}", poolsofflinefetcherrors);
💌 Response Codes
- 200
- 400
- 401
- 402
- 403
- 404
- 429
OK: Successful request.
{
"@odata.context": "https://cardanobi.io/api/core/odata/$metadata#PoolsOfflineFetchErrors",
"value": [
{
"id": 1,
"pool_id": 78,
"fetch_time": "2023-02-05T00:10:14.241245Z",
"pmr_id": 82,
"fetch_error": "HTTP Response from https://polypool.io/mama.json resulted in HTTP status code : 404 Not Found",
"retry_count": 0
},
"...",
{
"id": 20,
"pool_id": 270,
"fetch_time": "2023-02-05T00:10:14.241245Z",
"pmr_id": 324,
"fetch_error": "HTTP Response from https://tinyurl.com/bloom-small resulted in HTTP status code : 403 Forbidden",
"retry_count": 0
}
],
"@odata.nextLink": "https://cardanobi.io/api/core/odata/poolsofflinefetcherrors?$skip=20"
}
Bad Request: The request was unacceptable, often due to missing a required parameter.
Response schema is undefined.
Unauthorized: No valid API key provided.
Response schema is undefined.
Quota Exceeded: This API key has reached its usage limit on request.
Response schema is undefined.
Access Denied: The request is missing a valid API key or token.
Response schema is undefined.
Not Found: The requested resource cannot be found.
Response schema is undefined.
Too Many Requests: This API key has reached its rate limit.
Response schema is undefined.
💌 Response Schemas
- 200
- 400
- 401
- 402
- 403
- 404
- 429
Status Code 200
Name | Type | Description |
---|---|---|
id | integer(int64) | The pool offline fetch error unique identifier. |
pool_id | integer(int64) | The PoolHash table index for the pool this offline fetch error refers. |
fetch_time | string(date-time) | The UTC time stamp of the error. |
pmr_id | integer(int64) | The PoolMetadataRef table index for this offline data. |
fetch_error | string | The text of the error. |
retry_count | integer(int32) | The number of retries. |
Status Code 400
Name | Type | Description |
---|
Response schema is undefined.
Status Code 401
Name | Type | Description |
---|
Response schema is undefined.
Status Code 402
Name | Type | Description |
---|
Response schema is undefined.
Status Code 403
Name | Type | Description |
---|
Response schema is undefined.
Status Code 404
Name | Type | Description |
---|
Response schema is undefined.
Status Code 429
Name | Type | Description |
---|
Response schema is undefined.
GET One pool offline fetch errors by pool id OData
Returns the offline fetch errors for one pool given its unique identifier.
GET /api/core/odata/poolsofflinefetcherrors/{pool_id}
🎰 Parameters
Name | Description | In | Type | Required |
---|---|---|---|---|
pool_id | Pool unique identifier | path | integer | true |
👨💻 Code samples
- Node.js
- Python
- Rust
const CBI = await new CardanoBI({ apiKey: 'YOUR-KEY', apiSecret: 'YOUR-SECRET' });
const poolsofflinefetcherrors = await CBI.core.poolsofflinefetcherrors_({ "odata": true, pool_id: 4268 });
console.log(poolsofflinefetcherrors);
CBI = CardanoBI(apiKey='YOUR-KEY', apiSecret='YOUR-SECRET' });
poolsofflinefetcherrors = await CBI.core.poolsofflinefetcherrors_(odata=true,pool_id=4268);
print(poolsofflinefetcherrors);
let CBI = CardanoBI::new(Some("YOUR-KEY"), Some("YOUR-SECRET")).await.expect("Failed to initialize CardanoBI");
let poolsofflinefetcherrors = CBI.core.poolsofflinefetcherrors_(Some(4268), HashMap::from([("odata", "true")])).await.expect("Failed to call endpoint");
println!("poolsofflinefetcherrors: {:?}", poolsofflinefetcherrors);
💌 Response Codes
- 200
- 400
- 401
- 402
- 403
- 404
- 429
OK: Successful request.
{
"@odata.context": "https://cardanobi.io/api/core/odata/$metadata#PoolsOfflineFetchErrors",
"value": [
{
"id": 16620,
"pool_id": 4268,
"fetch_time": "2023-02-06T00:16:37.343007Z",
"pmr_id": 25193,
"fetch_error": "Hash mismatch from when fetching metadata from https://bit.ly/3nnt1ax. Expected 446a2fc88b19a288f2fb6da512922653c9942000ada10c846d71e48bcea74e8a but got 5f6583fb9515eb9df15715d940205eeac0c2a53e5c83c6eb4276a00a98db8e02.",
"retry_count": 0
},
"...",
{
"id": 73468,
"pool_id": 4268,
"fetch_time": "2023-02-24T22:36:23.174784Z",
"pmr_id": 25193,
"fetch_error": "URL parse error from for pool1y24nj4qdkg35nvvnfawukauggsxrxuy74876cplmxsee29w5axc resulted in : InvalidUrlException \"pool1y24nj4qdkg35nvvnfawukauggsxrxuy74876cplmxsee29w5axc\" \"Invalid URL\"",
"retry_count": 19
}
],
"@odata.nextLink": "https://cardanobi.io/api/core/odata/poolsofflinefetcherrors/4268?$skip=20"
}
Bad Request: The request was unacceptable, often due to missing a required parameter.
Response schema is undefined.
Unauthorized: No valid API key provided.
Response schema is undefined.
Quota Exceeded: This API key has reached its usage limit on request.
Response schema is undefined.
Access Denied: The request is missing a valid API key or token.
Response schema is undefined.
Not Found: The requested resource cannot be found.
Response schema is undefined.
Too Many Requests: This API key has reached its rate limit.
Response schema is undefined.
💌 Response Schemas
- 200
- 400
- 401
- 402
- 403
- 404
- 429
Status Code 200
Name | Type | Description |
---|---|---|
id | integer(int64) | The pool offline fetch error unique identifier. |
pool_id | integer(int64) | The PoolHash table index for the pool this offline fetch error refers. |
fetch_time | string(date-time) | The UTC time stamp of the error. |
pmr_id | integer(int64) | The PoolMetadataRef table index for this offline data. |
fetch_error | string | The text of the error. |
retry_count | integer(int32) | The number of retries. |
Status Code 400
Name | Type | Description |
---|
Response schema is undefined.
Status Code 401
Name | Type | Description |
---|
Response schema is undefined.
Status Code 402
Name | Type | Description |
---|
Response schema is undefined.
Status Code 403
Name | Type | Description |
---|
Response schema is undefined.
Status Code 404
Name | Type | Description |
---|
Response schema is undefined.
Status Code 429
Name | Type | Description |
---|
Response schema is undefined.