GET
/
v1
/
storage
/
{graph_id}
/
retrieval
/
cURL
curl --request GET \
  --url https://api.unize.org/v1/storage/{graph_id}/retrieval/ \
  --header 'Authorization: <api-key>'
{
  "retrieval_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "question": "<string>",
  "answer": "<string>",
  "status": "queued",
  "timestamp": "2023-11-07T05:31:56Z",
  "completed_at": "2023-11-07T05:31:56Z",
  "system": "rt-0.5"
}

Authorizations

Authorization
string
header
required

Send the API generated from the Playground:

  • Authorization: <api_key>

Path Parameters

graph_id
string
required

The graph_id of the knowledge graph for which to list all retrievals. A graph_id is an alphanumeric string that uniquely identifies a knowledge graph.

Query Parameters

limit
integer
default:10

Number of retrievals to return per page. Maximum is 100 and minimum is 10.

Required range: 10 <= x <= 100
page
integer
default:1

Indicates which page of results to return when paginating through a list of retrievals. Works together with the limit parameter to divide results into pages.

Response

200 - application/json

The response is of type object.