> ## Documentation Index
> Fetch the complete documentation index at: https://docs.parsetx.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Quickstart

> Zero to first call in 60 seconds

## 1. Get your API Key

Grab your key from the [dashboard](https://parsetx.dev).

## 2. Make your first request

<CodeGroup>
  ```bash cURL theme={null}
  curl -X POST https://api.parsetx.dev/v1/enrich \
    -H "X-API-Key: ptx_live_yourkeyhere" \
    -H "Content-Type: application/json" \
    -d '{"transactions": ["SQ *BLUE BOTTLE COFFEE SAN FRANCISCO CA"]}'
  ```

  ```javascript Node.js theme={null}
  import { ParseTxClient } from '@parsetx/sdk'; // Requires our Node.js SDK

  const client = new ParseTxClient('ptx_live_yourkeyhere');

  const response = await client.enrich([
    'SQ *BLUE BOTTLE COFFEE SAN FRANCISCO CA'
  ]);

  console.log(response.results[0].merchant); // "Blue Bottle Coffee"
  ```

  ```python Python theme={null}
  from parsetx import ParseTxClient

  client = ParseTxClient(api_key='ptx_live_yourkeyhere')

  response = client.enrich(['SQ *BLUE BOTTLE COFFEE SAN FRANCISCO CA'])
  print(response['results'][0]['merchant']) # "Blue Bottle Coffee"
  ```
</CodeGroup>

## 3. Next Steps

* See the [Response Schema](/guides/response-schema) for all the fields we return.
* Read the [Batch Processing](/guides/batch-processing) guide if you need to process hundreds of transactions at once.
