Skip to main content
GET
/
projects
/
{project_id}
/
extraction-flows
List extraction flows
import requests

url = "https://eu.app.clarifeye.ai/api/v1/projects/{project_id}/extraction-flows/"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "publish_mode": "auto_publish",
    "dag": {},
    "tpuf_namespaces": {},
    "last_pushed_to_tpuf": "2023-11-07T05:31:56Z",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.clarifeye.ai/llms.txt

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

Authorizations

Authorization
string
header
required

Use Authorization: Bearer

Path Parameters

project_id
string<uuid>
required

UUID of the project

Response

Successful response

id
string<uuid>
name
string
publish_mode
enum<string>
  • auto_publish — runs automatically push extracted data to downstream indexes.
  • manual_publish — publishing is triggered explicitly via the publish action.
Available options:
auto_publish,
manual_publish
dag
object

DAG definition (name + nodes) describing the extractor pipeline.

tpuf_namespaces
object

Per-namespace-type TurboPuffer namespace mapping populated on publish.

last_pushed_to_tpuf
string<date-time> | null
created_at
string<date-time>
updated_at
string<date-time>