Health check endpoints
Prices
/- Get Synthetic Graphite market prices
Get Synthetic Graphite market index data
Get Synthetic Graphite ma...
Prices API V3 - OpenAPI 3.0 (1.0.0)
API for retrieving critical mineral and energy transition prices across multiple markets with support for currency conversion, unit of measure conversion, and dynamic filtering based on market configuration.
Download OpenAPI description
Overview
Languages
Servers
Mock server
https://api-docs.benchmarkminerals.com/_mock/apis/prices
Production server
https://api.benchmarkminerals.com/v3/prices
Request
Retrieve prices for the Synthetic Graphite market with dynamic filtering.
Available filters for Synthetic Graphite:
- products, priceCategories, priceTypes (base filters)
- purities, incoterms, countries, regions, services (market-specific)
- codes (exclusive filter - when used, only dateFrom/dateTo allowed)
Security
bearerAuth and api_key(Required scopes:
prices:synthetic-graphite
)- Mock serverhttps://api-docs.benchmarkminerals.com/_mock/apis/prices/synthetic-graphite
- Production serverhttps://api.benchmarkminerals.com/v3/prices/synthetic-graphite
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
- Basic request
- Filtered by date range
- Filter by product codes
- List available price series
- Include summary statistics
curl -i -X POST \
https://api-docs.benchmarkminerals.com/_mock/apis/prices/synthetic-graphite \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"filters": {
"dateFrom": "2024-01-01",
"dateTo": "2024-12-31"
},
"options": {
"includeSeries": true
}
}'Response
application/json
- With series
- With summary
- Available prices
{ "$metadata": { "market": "Synthetic Graphite" }, "data": [ { … } ] }
Request
Retrieve price index data for the Synthetic Graphite market. Returns index values with summary statistics and time series data.
Security
bearerAuth and api_key(Required scopes:
prices:synthetic-graphite
)- Mock serverhttps://api-docs.benchmarkminerals.com/_mock/apis/prices/synthetic-graphite/index
- Production serverhttps://api.benchmarkminerals.com/v3/prices/synthetic-graphite/index
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
- Basic request
- Filtered by date range
curl -i -X POST \
https://api-docs.benchmarkminerals.com/_mock/apis/prices/synthetic-graphite/index \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"filters": {
"dateFrom": "2024-01-01",
"dateTo": "2024-12-31"
}
}'Response
application/json
{ "$metadata": { "market": "Synthetic Graphite" }, "data": [ { … } ] }