Skip to content

Commit

Permalink
docs(readme): add getSymbol example
Browse files Browse the repository at this point in the history
  • Loading branch information
vansergen committed Feb 5, 2021
1 parent ede64f9 commit 409d9a2
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions README.md
Expand Up @@ -23,6 +23,13 @@ const client = new PublicClient();
const symbols = await client.getSymbols();
```

- [`getSymbol`](https://docs.gemini.com/rest-api/#symbol-details)

```typescript
const symbol = "ZECLTC";
const info = await client.getSymbol({ symbol });
```

- [`getTicker`](https://docs.gemini.com/rest-api/#ticker)

```typescript
Expand Down

0 comments on commit 409d9a2

Please sign in to comment.