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

# Search

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

#### Path Parameters

| Name                                      | Type   | Description                                                                       |
| ----------------------------------------- | ------ | --------------------------------------------------------------------------------- |
| bot\_id<mark style="color:red;">\*</mark> | string | Required id of a bot that must be added on [cybralist.com](https://cybralist.com) |

{% tabs %}
{% tab title="200: OK This means you are good to go." %}

```javascript
{
 "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: Not Found This means you've entered invalid bot id." %}

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

{% endtab %}
{% endtabs %}
