# Microscopy

Conventional brightfield, confocal, hyperspectral, and brightfield video imaging.

# Brightfield

Process brightfield images.

# Endpoint

POST /processing/microscopy/brightfield

# Parameters

Name Type Description Required
manifest string GCS bucket path for GCS file path manifest ✔️

# Response

Status: 200

{
  "task_identifier": "EFTGHDFER"
}

curl -X POST https://api.rvrnc.io/processing/microscopy/brightfield \
  --data '{
  "manifest": "gs://user/manifest.csv"
}'

# Confocal

Process confocal images.

# Endpoint

POST /processing/microscopy/confocal

# Parameters

Name Type Description Required
manifest string GCS bucket path for GCS file path manifest ✔️

# Response

Status: 200

{
  "task_identifier": "EFTGHDFER"
}

curl -X POST https://api.rvrnc.io/processing/microscopy/confocal \
  --data '{
  "manifest": "gs://user/manifest.csv"
}'

# Hyperspectral

Process hyperspectral images.

# Endpoint

POST /processing/microscopy/hyperspectral

# Parameters

Name Type Description Required
manifest string GCS bucket path for GCS file path manifest ✔️

# Response

Status: 200

{
  "task_identifier": "EFTGHDFER"
}

curl -X POST https://api.rvrnc.io/processing/microscopy/hyperspectral \
  --data '{
  "manifest": "gs://user/manifest.csv"
}'

# Video

Process brightfield image videos.

# Endpoint

POST /processing/microscopy/brightfield_videos

# Parameters

Name Type Description Required
manifest string GCS bucket path for GCS file path manifest ✔️

# Response

Status: 200

{
  "task_identifier": "EFTGHDFER"
}

curl -X POST https://api.rvrnc.io/processing/microscopy/brightfield_videos \
  --data '{
  "manifest": "gs://user/manifest.csv"
}'