# 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 %}
