# GET FIU List

### Environment

<table><thead><tr><th width="218">Environment</th><th>CR API BASE URL</th></tr></thead><tbody><tr><td>Saafe Hackathon</td><td><code>https://api.sandbox.sahamati.org.in/cr</code></td></tr><tr><td>Saafe Sandbox</td><td><code>https://uatcr.sahamati.org.in</code></td></tr></tbody></table>

### API Request

<mark style="color:green;">`POST`</mark> `{{CR API BASE URL}}/v2/entityInfo/FIU`

Gets the list of FIUs registered in the central registry. As an FIU this will only return your own FIU Entity JSON

**Headers**

| Name          | Value                        |
| ------------- | ---------------------------- |
| Content-Type  | `application/json`           |
| Authorization | `Bearer <Entity Auth Token>` |

**Response**

{% tabs %}
{% tab title="200" %}
{% code overflow="wrap" %}

```json
[
  {
    "ver": "string",
    "timestamp": "string",
    "txnid": "string",
    "requester": {
      "name": "string",
      "id": "string"
    },
    "entityinfo": {
      "name": "string",
      "id": "string",
      "code": "string",
      "baseurl": "string",
      "certificate": {
        "alg": "string",
        "e": "string",
        "kid": "string",
        "kty": "string",
        "n": "string",
        "use": "string"
      },
      "inboundports": "string",
      "outboundports": "string",
      "ips": "string"
    }
  }
]
```

{% endcode %}
{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.saafe.in/central-registry/central-registry-apis/get-fiu-list.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
