FCALC
  1. LCI 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. LCI API

分片查询LCI数据

开发环境
http://localhost:9000
开发环境
http://localhost:9000
POST
/lci/slice
生命周期清单
分页查询生命周期清单数据

Request

Body Params application/json
lastId
integer 
optional
页码
Default:
1
size
integer 
optional
每页大小
Default:
10
datasetId
string 
optional
数据集ID
uuid
string 
optional
关键字
activityName
string 
optional
geography
string 
optional
referenceProductName
string 
optional
Example
{
    "lastId": 1,
    "size": 10,
    "datasetId": "string",
    "uuid": "string",
    "activityName": "string",
    "geography": "string",
    "referenceProductName": "string"
}

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 POST 'http://localhost:9000/lci/slice' \
--header 'Content-Type: application/json' \
--data-raw '{
    "lastId": 1,
    "size": 10,
    "datasetId": "string",
    "uuid": "string",
    "activityName": "string",
    "geography": "string",
    "referenceProductName": "string"
}'

Responses

🟢200成功
application/json
查询成功
Body
code
integer 
required
状态码
message
string 
required
消息
data
object 
required
分页数据
content
array [object {8}] 
required
当前页数据
hasNext
boolean 
required
是否有下一页
lastId
string 
required
timestamp
integer 
required
时间戳
Example
{
    "code": 200,
    "message": "success",
    "data": {
        "content": [
            {
                "lciDataId": "67d233357d66372e0af5e594",
                "dataSetId": "67d233157d66372e0af5e593",
                "uuid": "4cbdb257-8347-5dff-8abb-147a4c7e52f9_807906d0-f3cb-4a7c-a528-ae497a61bf12",
                "activityName": "1,1-difluoroethane production",
                "geography": "RoW",
                "referenceProductName": "1,1-difluoroethane",
                "referenceUnit": "kg",
                "referenceProductAmount": 1
            },
            {
                "lciDataId": "67d233357d66372e0af5e595",
                "dataSetId": "67d233157d66372e0af5e593",
                "uuid": "bcb3c411-22db-564c-9b1a-887380b0b7df_807906d0-f3cb-4a7c-a528-ae497a61bf12",
                "activityName": "1,1-difluoroethane production",
                "geography": "US",
                "referenceProductName": "1,1-difluoroethane",
                "referenceUnit": "kg",
                "referenceProductAmount": 1
            }
        ],
        "hasNext": true,
        "lastId": "67d233357d66372e0af5e595"
    },
    "timestamp": 1741853337116
}
Modified at 2025-03-13 07:23:01
Previous
导入LCI数据
Next
LCI向量嵌入
Built with