FCALC
  1. LCIA API
FCALC
  • CALC API
    • 碳排放计算接口
      POST
  • LCI API
    • 创建LCI数据集
      POST
    • 更新LCI数据集
      PUT
    • 获取所有LCI数据集
      GET
    • 删除LCI数据集
      DELETE
    • 导入LCI数据
      POST
    • 分片查询LCI数据
      POST
    • LCI向量嵌入
      POST
    • LCI向量近似查询
      POST
    • LCI向量近似查询
      POST
  • LCIA API
    • 创建LCIA数据集
      POST
    • 更新LCIA数据集
      PUT
    • 获取所有LCIA数据集
      GET
    • 删除LCIA数据集
      DELETE
    • 导入LCIA数据
      POST
    • 分片查询LCIA数据
      POST
  • METHOD API
    • 创建计算方法
      POST
    • 获取所有计算方法
      GET
    • 更新计算方法
      PUT
    • 删除计算方法
      DELETE
    • 重新计算LCI方法
      PUT
  • AICHAT(TEMP)
    • 文档解析
      POST
    • 文档分析
      POST
  • CHROMA
  1. LCIA API

获取所有LCIA数据集

开发环境
http://localhost:9000
开发环境
http://localhost:9000
GET
/lcia/dataset
生命周期影响评价
获取所有生命周期影响评价数据集

Request

None

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://localhost:9000/lcia/dataset'

Responses

🟢200成功
application/json
获取成功
Body
code
integer 
optional
状态码
message
string 
optional
消息
data
array[object (LciaDatasetResponse) {5}] 
optional
数据集列表
id
string 
optional
数据集ID
lciaName
string 
optional
LCIA数据集名称
lciaCode
string 
optional
LCIA数据集编码
createTime
string <date-time>
optional
创建时间
updateTime
string <date-time>
optional
更新时间
timestamp
integer <int64>
optional
时间戳
Example
{
    "code": 0,
    "message": "string",
    "data": [
        {
            "id": "string",
            "lciaName": "string",
            "lciaCode": "string",
            "createTime": "2019-08-24T14:15:22Z",
            "updateTime": "2019-08-24T14:15:22Z"
        }
    ],
    "timestamp": 0
}
Modified at 2025-03-13 01:54:23
Previous
更新LCIA数据集
Next
删除LCIA数据集
Built with