---
tags: API Document
---
Ponddy API Reader proxy bulk APIs Document
===
## `POST` /v1/ponddy-api/anchors/bulk
Get bulk of anchors by given IDs
### Header
```
Authorization: SSO {token}
```
### Request Body
- ids [list[int]]
### Example
#### Header
```
Authorization: SSO {token}
```
#### Request Body
```json
{
"ids": [200, 201]
}
```
#### Response
```json
[
{
"id": 200,
"title": "ChineseI_Lv0_L1P101你好1_S_VocabExercise_#",
"description": "",
"filename": "https://s3-us-west-1.amazonaws.com/api-develop/anchor/01b566665bd048169d1e13b797112ff5/02c06991813f40cb8b7e686478dd1d2b.png",
"simp_trad": "s",
"create_datetime": "2020-02-17T12:18:20+08:00",
"update_datetime": "2020-04-21T15:14:13.054162+08:00",
"type": 7,
"anchor_type": 12
},
{
"id": 201,
"title": "ChineseI_Lv0_L7P107你有什么爱好_S_Grammar_WordOrderinChinese",
"description": "WordOrderinChinese",
"filename": "https://s3-us-west-1.amazonaws.com/api-develop/anchor/7fe2f9a6373083d3a5fef003fb517cd9/ChineseI_Lv0_L7P107%E4%BD%A0%E6%9C%89%E4%BB%80%E4%B9%88%E7%88%B1%E5%A5%BD_S_Grammar_WordOrderinChinese/index.html",
"simp_trad": "s",
"create_datetime": "2020-02-17T12:18:53+08:00",
"update_datetime": "2020-02-17T12:18:53+08:00",
"type": 6,
"anchor_type": 2
}
]
```
## `POST` /api/v1/ponddy-api/grammar/bulk
Get bulk of grammars by given IDs
### Header
```
Authorization: SSO {token}
```
### Request Body
- ids [list[int]]
### Example
#### Header
```
Authorization: SSO {token}
```
#### Request Body
```json
{
"ids": [1, 2]
}
```
#### Response
```json
[
{
"id": 1,
"name": "The Verb 姓",
"name_ja": "動詞の「姓」",
"name_trad": "The Verb 姓",
"name_trad_ja": "動詞の「姓」",
"explan_en": "<p>“姓” is a verb that takes a surname as its object.</p>",
"explan_en_trad": "<p>“姓” is a verb that takes a surname as its object.</p>",
"level": {
"context": "grammar",
"ponddy": "0"
},
"gid": "G0010",
"explan_ja": "<p>中国語の「姓」は動詞であり、「~と申す」を意味するので、「姓」の後に目的語として名字が来る。</p>",
"explan_ja_trad": "<p>中国語の「姓」は動詞であり、「~と申す」を意味するので、「姓」の後に目的語として名字が来る。</p>",
"disable": false
},
{
"id": 2,
"name": "Questions Ending with 呢",
"name_ja": "文末が「呢」の疑問文",
"name_trad": "Questions Ending with 呢",
"name_trad_ja": "文末が「呢」の疑問文",
"explan_en": "<p>“呢” is a sentence-final particle often used to return a just answered question.</p>",
"explan_en_trad": "<p>“呢” is a sentence-final particle often used to return a just answered question.</p>",
"level": {
"context": "grammar",
"ponddy": "0"
},
"gid": "G0020",
"explan_ja": "<p>「呢」は中国語の文末に来る疑問助詞である。話し相手に質問され回答した人は「呢」を疑問文の文末につけて、その相手に同じ質問を聞き返す。</p>",
"explan_ja_trad": "<p>「呢」は中国語の文末に来る疑問助詞である。話し相手に質問され回答した人は「呢」を疑問文の文末につけて、その相手に同じ質問を聞き返す。</p>",
"disable": false
}
]
```