Skip to main content
POST
/
material-library
/
facility-list
Get Facility List
curl --request POST \
  --url https://api-v2.production.higg.org/pic-api/v1/material-library/facility-list \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --header 'x-developer-request-token: <api-key>' \
  --data '
{
  "size": 123,
  "textSearch": "<string>"
}
'
[
  {
    "sacId": 123,
    "accountName": "<string>"
  }
]

Documentation Index

Fetch the complete documentation index at: https://developer.worldly.io/llms.txt

Use this file to discover all available pages before exploring further.

Use this endpoint to search for facilities that can be linked to life cycle processes in your custom materials. These are facilities with shared FEM data that can provide facility-specific environmental impact data for Tier 2/3 material modeling.

Request body params

NameTypeDescription
textSearchstringSearch facilities by name.
sizenumber[DEFAULT: 900] Number of results to return (max 900).
sortobjectSorting configuration { field: string, order: "asc" | "desc" }.

Implementation Details

  • Large page size: Unlike most PIC endpoints, this endpoint supports up to 900 results per page.
  • Response fields: Each facility includes a sacId (numeric Worldly ID) and accountName.
  • Usage: Use the sacId value (converted to a string) as the facilityWorldlyId in life cycle processes when creating or updating custom materials.

Authorizations

x-api-key
string
header
required
x-developer-request-token
string
header
required

Body

application/json
size
number<double> | null
sort
object

API Search requests

textSearch
string | null

Response

200 - application/json

Ok

sacId
number<double>
required
accountName
string
required