---
title: "/s requests"
slug: "s-requests"
updated: 2023-02-22T01:34:37Z
published: 2023-02-22T01:34:37Z
---

> ## Documentation Index
> Fetch the complete documentation index at: https://code.tag.bio/llms.txt
> Use this file to discover all available pages before exploring further.

# /s requests

[As described above](https://code.tag.bio/v1/docs/fc-api-methods-high-level), the /s API method requests metadata about the FC.

## Request

It requires no JSON payload.

## Response

The response to the `/s` request is also quite useful for encoding provenance on analysis results and other [Useful Data ArtifacTs (UDATs)](https://medium.com/tag-bio/a-brief-introduction-to-useful-data-artifacts-and-the-next-generation-of-data-analysis-systems-1f42ef91ce92). For UDATs to be fully reproducible, they must be calculated from the exact same data, and with the exact same server configuration (FC version, FC project repository version).

## Example /s response

```
{
  "version": "2.88.95", // <-- FC server version
  "commit": "N/A", // <-- The git commit for fc-iris when the server was started
  "start_time": "1677024487695",
  "data_commit": "N/A", // <-- The git commit for fc-iris when the data model was created
  "data_server_version": "2.88.95", // <-- FC server version when the data model was created
  "data_version": "af894ab0-6c1c-4153-8a1d-19b9bcd326fe", // <-- Data model UUID
  "data_timestamp":"1670924298582",
  "name": "fc-iris",
  "title": "FC Iris",
  "description": "The iris flower data set",
  "asset": {
     "path": "lightbulb-line-mixed.png"
  },
  "link": "https://en.wikipedia.org/wiki/Iris_flower_data_set",
  "owner": "Tag.bio",
  "entity_name_singular": "observation",
  "entity_name_plural": "observations",
  "overview_protocol": "overview",
  "entity_count": "150"
}
```
