# Api Key

All api require permission validation.you need to add "**bybtSecret**" in http request **header**.

```python
Python Code:

import requests

url = "http://open-api.bybt.com/api/pro/v1/futures/openInterest?interval={interval}&symbol={symbol}"

params = {}
headers = {
  'bybtSecret': 'apiKey'
}

response = requests.request("GET", url, headers=headers, data = params)

print(response.text.encode('utf8'))

```

```python
Curl Code:

curl --location --request GET 'http://open-api.bybt.com/' \
--header 'bybtSecret: apiKey'
```


---

# 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://bybt.gitbook.io/bybt/api-key.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.
