> For the complete documentation index, see [llms.txt](https://docs.ospree.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ospree.io/developers/accounts-directory/retrieve-vasp.md).

# Retrieve VASP

<mark style="color:green;">`GET`</mark>  `/api/v2/directory/vasps/{vasp_id}`

This endpoint allows retrieval of a VASP record using the unique identifier `vasp_id`. If the `vasp_id` does not correspond to any existing VASP record, the endpoint will return no results.

Path Parameters

<table><thead><tr><th width="214">Name</th><th>Type</th><th width="345">Description</th><th>Required</th></tr></thead><tbody><tr><td><code>vasp_id</code></td><td>string</td><td>The parameter <code>vasp_id</code> represents the unique identifier of the VASP (Virtual Asset Service Provider).</td><td>True</td></tr></tbody></table>

Response

{% tabs %}
{% tab title="200" %}

```json
{
    "status": "success",
    "data": {
      "vasp_id": "ABCXYZ",
      "name_legal": "Sample Ltd",
      "name_business": "Sample Ltdp",
      "address_country_code": "UK",
      "address_street_no": "32",
      "address_street_name": "Old Jewry",
      "address_city": "London",
      "address_region": "South-east England",
      "address_postcode": "EC2R 2DN",
      "website": "www.sample.io",
      "summary": "This firm is registered for certain cryptoasset activities. For more information, check out [ ]",
      "supported_protocols": [
        "flow"
      ],
      "national_id_type_code": "RAID",
      "national_id": "3523524",
      "national_id_issue_country": null,
      "national_id_registration_authority": "RA999999"
    },
    "message": "null"
}
```

{% endtab %}
{% endtabs %}
