# Get Token's Blacklist

## GET /krc20/blacklist/{ca}

> Get list of token blacklists

```json
{"openapi":"3.0.0","info":{"title":"Kasplex KRC-20 API Documentation","version":"1.0.0"},"tags":[{"name":"Get-Token's-Blacklist"}],"servers":[{"url":"https://tn10api.kasplex.org/v1","description":"Kasplex KRC-20 TN10 Testnet"},{"url":"https://api.kasplex.org/v1","description":"Kasplex KRC-20 Mainnet"}],"paths":{"/krc20/blacklist/{ca}":{"get":{"tags":["Get-Token's-Blacklist"],"description":"Get list of token blacklists","parameters":[{"name":"ca","schema":{"type":"string"},"in":"path","required":true,"description":"Contract address of the token (case-insensitive)"},{"name":"next","in":"query","schema":{"type":"string"},"required":false,"description":"Cursor to start next page, returned by the last request."},{"name":"prev","in":"query","schema":{"type":"string"},"required":false,"description":"Cursor to start previous page, returned by the last request."},{"name":"address","in":"query","schema":{"type":"string"},"required":false,"description":"Filtered by address (case-insensitive)"}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"$ref":"#/components/schemas/BlacklistsResponse"}}}}}}}},"components":{"schemas":{"BlacklistsResponse":{"type":"object","properties":{"message":{"type":"string"},"prev":{"type":"string"},"next":{"type":"string"},"result":{"type":"array","description":"Blacklists, up to 50 items. If empty or less than 50, indicating the last page.","items":{"$ref":"#/components/schemas/Blacklist"}}}},"Blacklist":{"type":"object","properties":{"ca":{"type":"string","description":"Token contract address in \"deploy-issue\" mode"},"address":{"type":"string","description":"Address in the blacklist"},"opScoreAdd":{"type":"string","description":"OP score when added"}}}}}}
```
