Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/docs/documentation/making-your-first-request.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Download Postman from [postman.com/downloads](https://www.postman.com/downloads/
Paste this URL into the request field:

```
https://api.whitepages.com/v1/person?name=John%20Smith&address.city=Seattle&address.state_code=WA
https://api.whitepages.com/v1/person?name=John%20Smith&city=Seattle&state_code=WA
```

</Step>
Expand Down Expand Up @@ -105,7 +105,7 @@ If you see data like this, your API key is working correctly.
If you prefer the command line, you can use cURL:

```bash
curl 'https://api.whitepages.com/v1/person?name=John%20Smith&address.city=Seattle&address.state_code=WA' \
curl 'https://api.whitepages.com/v1/person?name=John%20Smith&city=Seattle&state_code=WA' \
--header 'X-Api-Key: YOUR_API_KEY'
```

Expand Down
2 changes: 1 addition & 1 deletion src/components/activation/api-key-tester.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export function ApiKeyTester({ mockMode = false }: ApiKeyTesterProps) {

try {
const result = await fetch(
"/docs/api/test-proxy?name=John%20Smith&address.city=Seattle&address.state_code=WA",
"/docs/api/test-proxy?name=John%20Smith&city=Seattle&state_code=WA",
{
headers: {
"X-Api-Key": apiKey.trim(),
Expand Down