For HTTP GET requests, API parameters can be specified in a request URL. If an API parameter contains URL reserved characters (such as #), those characters must be replaced with their percent encoding. For example, the # character must be replaced with %23.
| Character | Encoding |
|---|---|
| ! | %21 |
| # | %23 |
| $ | %24 |
| & | %26 |
| ‘ | %27 |
| ( | %28 |
| ) | %29 |
| * | %2A |
| + | %2B |
| , | %2C |
| / | %2F |
| : | %3A |
| ; | %3B |
| = | %3D |
| ? | %3F |
| @ | %40 |
| [ | %5B |
| ] | %5D |