> For the complete documentation index, see [llms.txt](https://galacticadevelopment.gitbook.io/galactica-devlopment/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://galacticadevelopment.gitbook.io/galactica-devlopment/api/search.md).

# Search

## Search a bot from id.

<mark style="color:blue;">`GET`</mark> `https://galactica.ga/api/bots/:bot_id`

#### Path Parameters

| Name    | Type   | Description                                  |
| ------- | ------ | -------------------------------------------- |
| bot\_id | string | It is the id of the bot you are looking for. |

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

```
{
 "avatar": String,
 "botID": String,
 "username": String,
 "discrim": String,
 "shortDesc": String,
 "prefix": String,
 "votes": String,
 "ownerID": String,
 "owner": String,
 "coowners": Array,
 "tags": Array,
 "longDesc": String,
 "certificate": String,
 "github": String,
 "support": String,
 "website": String
}
```

{% endtab %}

{% tab title="404 " %}

```
{
   "error": "You entered invalid bot id."
}
```

{% endtab %}
{% endtabs %}
