Skip to content

Get an API Key

Self-serve console access isn't live yet. During this phase, API keys are provisioned manually by our team, following these steps:

  1. 1

    Contact us

    Email us your company/team and use case; we'll review it and provision access manually.

  2. 2

    Receive your key

    We'll send your API key by email along with your initial quota.

  3. 3

    Make your first request

    Call JSON-RPC or the Data API with your key, using either method below.

Option 1: key in the path

curl -X POST https://dev-api.blockvectra.network/v1/<YOUR_API_KEY> \
  -H "content-type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"eth_blockNumber","params":[]}'

Option 2: key in a header

curl -X POST https://dev-api.blockvectra.network/v1/ \
  -H "content-type: application/json" \
  -H "x-api-key: <YOUR_API_KEY>" \
  -d '{"jsonrpc":"2.0","id":1,"method":"eth_blockNumber","params":[]}'

We'll size your initial quota to your use case, and help you migrate to the self-serve console once it launches.