# Meta

The returned information generally has some common fields, and the server will put these data in the meta.

| Script       | Type    | Explanation                       |
| ------------ | ------- | --------------------------------- |
| Page         | Integer | The currently requested page code |
| per\_page    | Integer | number per page                   |
| total\_count | Integer | Total number of resources         |

Example

```
api/v1/exchange/trades
```

```
{
	"meta": {
		"page": 1,
		"per_page": 10,
		"total_count": 3
	},
	"trades": [{
			"id": 64,
			"price": "0.383",
			"volume": "100.0",
			"funds": "38.3",
			"market_code": "ethbtc",
			"created_at": "2018-09-12T01:56:26Z",
			"side": "bid"
		},
		{
			"id": 62,
			"price": "0.381",
			"volume": "100.0",
			"funds": "38.1",
			"market_code": "ethbtc",
			"created_at": "2018-09-11T14:35:31Z",
			"side": "ask"
		},
		{
			"id": 60,
			"price": "0.382",
			"volume": "100.0",
			"funds": "38.2",
			"market_code": "ethbtc",
			"created_at": "2018-09-11T14:35:14Z",
			"side": "ask"
		}
	]
}
```

All resources can be supported by the list API method. For example, there are trades and trades. These list API methods all have the same data structure. <br>

| Parameter | Type    | Explanation         |
| --------- | ------- | ------------------- |
| page      | Integer | requested page code |
| per\_page | Integer | number per page     |


---

# 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://abcc-docs.gitbook.io/api/meta.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.
