{"info":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","description":"<html><head></head><body><p>Blockchain intelligence data for every chain Arkham supports. Run <code>GET /chains</code> for the live list.</p>\n<h2 id=\"quick-start\">Quick Start</h2>\n<ol>\n<li>Import this collection into Postman</li>\n<li>Open the collection's <strong>Variables</strong> tab and paste your API key into <code>apiKey</code></li>\n<li>Start with the \"Getting Started\" folder to test your connection</li>\n</ol>\n<h2 id=\"collection-structure\">Collection Structure</h2>\n<ul>\n<li><strong>Getting Started</strong> - Onboarding and first API calls</li>\n<li><strong>Complete API Reference</strong> - Every endpoint in the public API, grouped by API resource</li>\n</ul>\n<h2 id=\"authentication\">Authentication</h2>\n<p>All requests require an API key in the header:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>API-Key: YOUR_API_KEY_HERE\n</code></pre><p>The collection sends this header for you from the <code>apiKey</code> variable.</p>\n<p>Get your API key at: <a href=\"https://arkm.com\">https://arkm.com</a></p>\n<h2 id=\"rate-limits\">Rate Limits</h2>\n<ul>\n<li><strong>Most endpoints:</strong> 20 requests/second</li>\n<li><strong>Search-backed endpoints:</strong> 1 request/second, counted per account, rising on higher plans</li>\n<li><strong>Batch endpoints:</strong> 1 request/second, counted per source IP, the same on every plan</li>\n</ul>\n<p>Requests that carry a limit state it in their own description. Full details: <a href=\"https://arkm.com/api/docs#usage/rate-limits\">https://arkm.com/api/docs#usage/rate-limits</a></p>\n<h2 id=\"tips\">Tips</h2>\n<ul>\n<li>Every request is pre-filled with a working example value, so you can hit Send immediately</li>\n<li>Intelligence label usage comes back in the <code>X-Intel-Datapoints-Usage</code>, <code>X-Intel-Datapoints-Limit</code> and <code>X-Intel-Datapoints-Remaining</code> response headers; per-second rate limits are not exposed as headers</li>\n<li>Use code generation (&lt;/&gt; button) to copy snippets in Python, JavaScript, cURL, etc.</li>\n</ul>\n<h2 id=\"documentation\">Documentation</h2>\n<p>Full API docs: <a href=\"https://arkm.com/api/docs\">https://arkm.com/api/docs</a></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"56855106","collectionId":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","publishedId":"2sBY4SLy6F","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-07-28T10:29:40.000Z"},"item":[{"name":"Getting Started","item":[{"name":"01. Test Your Connection","event":[{"listen":"test","script":{"type":"text/javascript","exec":["pm.test(\"Status is 200 OK\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Response time is acceptable\", function () {","    pm.expect(pm.response.responseTime).to.be.below(1000);","});","","pm.test(\"Returns array of chains\", function () {","    const jsonData = pm.response.json();","    pm.expect(jsonData).to.be.an('array');","    pm.expect(jsonData.length).to.be.above(0);","});","","pm.test(\"Chain names are strings\", function () {","    const jsonData = pm.response.json();","    if (jsonData.length > 0) {","        pm.expect(typeof jsonData[0]).to.equal('string');","    }","});","","const chains = pm.response.json();","console.log(\"\\nAuthentication successful.\");","console.log(`\\nFound ${chains.length} supported chains:`);","chains.slice(0, 10).forEach(chain => {","    console.log(`   - ${chain}`);","});","if (chains.length > 10) {","    console.log(`   ... and ${chains.length - 10} more`);","}","console.log(\"\\nNext step: Run '02. Your First Query' to get address intelligence.\");"]}}],"id":"c6aa20da-b8e5-4265-8d26-b3025795bf9a","request":{"method":"GET","header":[],"url":"https://api.arkm.com/chains","description":"<p>Verify your collection can reach the Arkham API and that your API key works.</p>\n<p>Get list of all supported blockchain chains. This is your first authenticated request.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>This endpoint requires your API key. The key is automatically included from the collection variable <code></code>.</p>\n<h2 id=\"expected-result\">Expected Result</h2>\n<ul>\n<li>Status: 200 OK</li>\n<li>Array of chain name strings, e.g. <code>[\"ethereum\", \"bitcoin\", \"tron\", \"polygon\", \"bsc\"]</code></li>\n</ul>\n<p>Example chains: Ethereum, Bitcoin, Polygon, Arbitrum, Solana, etc.</p>\n<h2 id=\"if-you-get-401-unauthorized\">If You Get 401 Unauthorized</h2>\n<p>Your API key isn't set correctly:</p>\n<ol>\n<li>Click the collection name, then open the <strong>Variables</strong> tab</li>\n<li>Paste your key into the <code>apiKey</code> variable and <strong>Save</strong></li>\n<li>Make sure there are no extra spaces</li>\n</ol>\n<h2 id=\"what-to-do-with-this\">What To Do With This</h2>\n<p>Use any chain name from the list in the <code>chain</code> or <code>chains</code> parameter of other endpoints.</p>\n<p>Example: <code>?chain=ethereum</code> or <code>?chains=ethereum,polygon</code></p>\n<h2 id=\"if-this-fails\">If This Fails</h2>\n<ul>\n<li>Check your internet connection</li>\n<li>Verify <code>https://api.arkm.com</code> is set to <code>https://api.arkm.com</code></li>\n<li>Check Postman Console (View → Show Postman Console) for details</li>\n</ul>\n<h2 id=\"next-steps\">Next Steps</h2>\n<p>If this passes, move to \"02. Your First Query\" to get address intelligence.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["chains"],"host":["https://api.arkm.com"],"query":[],"variable":[]}},"response":[{"id":"37d2a8e3-2d53-4f81-b32e-19979460dedb","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.arkm.com/chains","description":"Verify your collection can reach the Arkham API and that your API key works.\n\nGet list of all supported blockchain chains. This is your first authenticated request.\n\n## Authentication\n\nThis endpoint requires your API key. The key is automatically included from the collection variable ``.\n\n## Expected Result\n\n- Status: 200 OK\n- Array of chain name strings, e.g. `[\"ethereum\", \"bitcoin\", \"tron\", \"polygon\", \"bsc\"]`\n\nExample chains: Ethereum, Bitcoin, Polygon, Arbitrum, Solana, etc.\n\n## If You Get 401 Unauthorized\n\nYour API key isn't set correctly:\n1. Click the collection name, then open the **Variables** tab\n2. Paste your key into the `apiKey` variable and **Save**\n3. Make sure there are no extra spaces\n\n## What To Do With This\n\nUse any chain name from the list in the `chain` or `chains` parameter of other endpoints.\n\nExample: `?chain=ethereum` or `?chains=ethereum,polygon`\n\n## If This Fails\n\n- Check your internet connection\n- Verify `https://api.arkm.com` is set to `https://api.arkm.com`\n- Check Postman Console (View → Show Postman Console) for details\n\n## Next Steps\n\nIf this passes, move to \"02. Your First Query\" to get address intelligence."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  \"ethereum\",\n  \"bitcoin\",\n  \"tron\",\n  \"polygon\",\n  \"bsc\"\n]"}],"_postman_id":"c6aa20da-b8e5-4265-8d26-b3025795bf9a"},{"name":"02. Your First Query - Address Intelligence","event":[{"listen":"test","script":{"type":"text/javascript","exec":["pm.test(\"Status is 200 OK\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Response has address data\", function () {","    const jsonData = pm.response.json();","    pm.expect(jsonData).to.have.property('address');","});","","var addrData = pm.response.json();","console.log(\"\\nGot address intelligence.\");","console.log(\"\\nAddress Information:\");","console.log(`   Address: ${addrData.address}`);","if (addrData.arkhamEntity) {","    console.log(`   Entity: ${addrData.arkhamEntity.name || 'Unknown'}`);","}","if (addrData.arkhamLabel) {","    console.log(`   Label: ${addrData.arkhamLabel.name || 'None'}`);","}","if (addrData.labels && addrData.labels.length > 0) {","    console.log(`   Tags: ${addrData.labels.join(', ')}`);","}","","console.log(\"\\nSetup complete.\");","console.log(\"\\nNext:\");","console.log(\"   - Try modifying parameters to see different results\");","console.log(\"   - Browse 'Complete API Reference' for every endpoint\");"]}}],"id":"5ec5b779-798c-4af9-95cf-a71a8e86df6b","request":{"method":"GET","header":[],"url":"https://api.arkm.com/intelligence/address/0x28C6c06298d514Db089934071355E5743bf21d60?chain=ethereum","description":"<p>Get intelligence data for a blockchain address. This example uses a Binance hot wallet.</p>\n<h2 id=\"key-concepts\">Key Concepts</h2>\n<ul>\n<li><strong>Address</strong>: A blockchain address (like 0x123...)</li>\n<li><strong>Entity</strong>: The real-world owner (like \"Binance\" or \"Coinbase\")</li>\n<li><strong>Tags</strong>: Categories applied to the address (like \"Exchange\", \"Hot Wallet\")</li>\n</ul>\n<h2 id=\"response-data\">Response Data</h2>\n<ul>\n<li>Address basic info</li>\n<li>Linked entity name (if known)</li>\n<li>Applied tags</li>\n<li>Risk indicators</li>\n<li>Chain information</li>\n</ul>\n<h2 id=\"try-this\">Try This</h2>\n<p>After running, try these modifications:</p>\n<ol>\n<li>Swap the address for another one, e.g. <code>0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045</code></li>\n<li>Change the <code>chain</code> parameter to see other chains</li>\n<li>Remove the <code>chain</code> parameter to see data across all chains</li>\n</ol>\n<h2 id=\"next-steps\">Next Steps</h2>\n<ul>\n<li>Browse Complete API Reference for every endpoint in the public API</li>\n</ul>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["intelligence","address","0x28C6c06298d514Db089934071355E5743bf21d60"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Chain to query (optional, defaults to all chains)</p>\n","type":"text/plain"},"key":"chain","value":"ethereum"}],"variable":[]}},"response":[{"id":"32f5066a-128e-40b1-843d-e78c667044e5","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/intelligence/address/0x28C6c06298d514Db089934071355E5743bf21d60?chain=ethereum","host":["https://api.arkm.com"],"path":["intelligence","address","0x28C6c06298d514Db089934071355E5743bf21d60"],"query":[{"key":"chain","value":"ethereum","description":"Chain to query (optional, defaults to all chains)"}]},"description":"Get intelligence data for a blockchain address. This example uses a Binance hot wallet.\n\n## Key Concepts\n\n- **Address**: A blockchain address (like 0x123...)\n- **Entity**: The real-world owner (like \"Binance\" or \"Coinbase\")\n- **Tags**: Categories applied to the address (like \"Exchange\", \"Hot Wallet\")\n\n## Response Data\n\n- Address basic info\n- Linked entity name (if known)\n- Applied tags\n- Risk indicators\n- Chain information\n\n## Try This\n\nAfter running, try these modifications:\n1. Swap the address for another one, e.g. `0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045`\n2. Change the `chain` parameter to see other chains\n3. Remove the `chain` parameter to see data across all chains\n\n## Next Steps\n\n- Browse Complete API Reference for every endpoint in the public API"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n  \"arkhamEntity\": {\n    \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n    \"id\": \"binance\",\n    \"linkedin\": \"https://www.linkedin.com/company/binance\",\n    \"name\": \"Binance\",\n    \"note\": \"\",\n    \"service\": null,\n    \"twitter\": \"https://twitter.com/binance\",\n    \"type\": \"cex\",\n    \"website\": \"https://binance.com\"\n  },\n  \"arkhamLabel\": {\n    \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n    \"chainType\": \"evm\",\n    \"name\": \"Hot Wallet\"\n  },\n  \"chain\": \"ethereum\",\n  \"contract\": false,\n  \"isUserAddress\": false\n}"}],"_postman_id":"5ec5b779-798c-4af9-95cf-a71a8e86df6b"}],"id":"2349c074-219a-48dd-9b53-8a1bd6c3ef97","description":"<p>Complete these requests in order to set up and test your API access.</p>\n<h1 id=\"getting-started-with-arkham-api\">Getting Started with Arkham API</h1>\n<h2 id=\"prerequisites\">Prerequisites</h2>\n<ol>\n<li>Postman installed (download at postman.com)</li>\n<li>Arkham API Key (get yours at <a href=\"https://arkm.com\">https://arkm.com</a>)</li>\n</ol>\n<h2 id=\"setup-instructions\">Setup Instructions</h2>\n<h3 id=\"step-1-add-your-api-key\">Step 1: Add Your API Key</h3>\n<ol>\n<li>Click the collection name, then open the <strong>Variables</strong> tab</li>\n<li>Find the <code>apiKey</code> variable</li>\n<li>Paste your API key into <strong>Current value</strong></li>\n<li>Click <strong>Save</strong></li>\n</ol>\n<h3 id=\"step-2-test-connection\">Step 2: Test Connection</h3>\n<p>Run \"01. Test Your Connection\" to verify everything works.</p>\n<h2 id=\"tips\">Tips</h2>\n<ul>\n<li><code>https://api.arkm.com</code> and <code></code> come from the collection's own variables, so no environment file is needed</li>\n<li>Every other value is a real, working example inlined in the request</li>\n<li>Check the Console (View → Show Postman Console) for detailed logs</li>\n<li>Response times are shown in Console</li>\n</ul>\n<h2 id=\"need-help\">Need Help?</h2>\n<ul>\n<li>Full API documentation: <a href=\"https://arkm.com/api/docs\">https://arkm.com/api/docs</a></li>\n<li>Support: <a href=\"mailto:api@arkm.com\">api@arkm.com</a></li>\n</ul>\n","_postman_id":"2349c074-219a-48dd-9b53-8a1bd6c3ef97","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}}},{"name":"Complete API Reference","item":[{"name":"analytics","item":[{"name":"Get historical credit usage by billing period","id":"2572ed4c-db69-477f-8d23-ad6614c66283","request":{"method":"GET","header":[],"url":"https://api.arkm.com/analytics/credit-periods","description":"<p>Returns the last 12 billing periods of credit usage for your billing entity.</p>\n<p>Each period includes the period boundaries, plan credits included, extra (overage) credits, and total credits consumed.</p>\n<p>Only available to organization admins (returning their org's usage) and individual API subscribers (returning their own usage). Other callers receive <code>403</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["analytics","credit-periods"],"host":["https://api.arkm.com"],"query":[],"variable":[]}},"response":[{"id":"24939cd3-0da4-4166-8d7e-e11fe8066d0d","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.arkm.com/analytics/credit-periods","description":"Returns the last 12 billing periods of credit usage for your billing entity.\n\nEach period includes the period boundaries, plan credits included, extra (overage) credits, and total credits consumed.\n\nOnly available to organization admins (returning their org's usage) and individual API subscribers (returning their own usage). Other callers receive `403`."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"computedAt\": \"2026-05-01T00:05:12Z\",\n    \"creditsIncluded\": 500000,\n    \"creditsUsed\": 482350,\n    \"entityId\": \"org_01HF8X3J0KQZ2N7T6P9YV4WB5R\",\n    \"entityType\": \"org\",\n    \"extraCredits\": 0,\n    \"periodEnd\": \"2026-05-01T00:00:00Z\",\n    \"periodStart\": \"2026-04-01T00:00:00Z\",\n    \"status\": \"closed\"\n  }\n]"}],"_postman_id":"2572ed4c-db69-477f-8d23-ad6614c66283"},{"name":"Get API endpoint call analytics","id":"a0fe19ec-e23a-4ac9-b1fc-93bb5031d277","request":{"method":"GET","header":[],"url":"https://api.arkm.com/analytics/endpoint-calls","description":"<p>Returns your API usage broken down by endpoint, including call counts and credits consumed.</p>\n<p>If your API key belongs to an organization member, results are scoped to your usage within that org. Otherwise, results cover your individual subscription usage.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["analytics","endpoint-calls"],"host":["https://api.arkm.com"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Time window: \"24h\", \"7d\", or \"30d\". Defaults to \"24h\". Ignored when both start_date and end_date are provided.</p>\n","type":"text/plain"},"key":"period","value":"7d"},{"disabled":true,"description":{"content":"<p>Optional. RFC3339 timestamp. Historical cutoff for the period-based window, or the upper bound of a custom range.</p>\n","type":"text/plain"},"key":"end_date","value":"2026-05-26T00:00:00Z"},{"disabled":true,"description":{"content":"<p>Optional. RFC3339 timestamp. Lower bound of a custom date range. Only takes effect together with end_date — a custom range requires both; start_date supplied on its own is ignored. Max range 366 days.</p>\n","type":"text/plain"},"key":"start_date","value":"2026-04-26T00:00:00Z"}],"variable":[]}},"response":[{"id":"55612e7f-16c8-4578-8b37-25c35add99e1","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/analytics/endpoint-calls","host":["https://api.arkm.com"],"path":["analytics","endpoint-calls"],"query":[{"key":"period","value":"7d","description":"Optional. Time window: \"24h\", \"7d\", or \"30d\". Defaults to \"24h\". Ignored when both start_date and end_date are provided.","disabled":true},{"key":"end_date","value":"2026-05-26T00:00:00Z","description":"Optional. RFC3339 timestamp. Historical cutoff for the period-based window, or the upper bound of a custom range.","disabled":true},{"key":"start_date","value":"2026-04-26T00:00:00Z","description":"Optional. RFC3339 timestamp. Lower bound of a custom date range. Only takes effect together with end_date — a custom range requires both; start_date supplied on its own is ignored. Max range 366 days.","disabled":true}]},"description":"Returns your API usage broken down by endpoint, including call counts and credits consumed.\n\nIf your API key belongs to an organization member, results are scoped to your usage within that org. Otherwise, results cover your individual subscription usage."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"dataPoints\": [\n    {\n      \"callBreakdown\": {\n        \"/intelligence/address/{address}\": 864,\n        \"/transfers\": 420\n      },\n      \"creditBreakdown\": {\n        \"/intelligence/address/{address}\": 5220,\n        \"/transfers\": 2100\n      },\n      \"hour\": \"2026-05-26T14:00:00Z\",\n      \"totalCalls\": 1284,\n      \"totalCostUnits\": 7320,\n      \"totalCredits\": 7320\n    }\n  ],\n  \"endTime\": \"2026-05-26T00:00:00Z\",\n  \"endpointInfos\": [\n    {\n      \"color\": \"#4f46e5\",\n      \"pattern\": \"/transfers\",\n      \"unitType\": \"call\",\n      \"weight\": 5\n    }\n  ],\n  \"period\": \"7d\",\n  \"startTime\": \"2026-05-19T00:00:00Z\"\n}"}],"_postman_id":"a0fe19ec-e23a-4ac9-b1fc-93bb5031d277"}],"id":"180d5640-5842-49df-8e19-1b23c2dc4288","_postman_id":"180d5640-5842-49df-8e19-1b23c2dc4288","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}}},{"name":"arkm","item":[{"name":"Get ARKM circulating supply","id":"b5480672-cad0-4f46-92b9-4499f04243ed","request":{"method":"GET","header":[],"url":"https://api.arkm.com/arkm/circulating","description":"<p>Returns the current circulating supply of ARKM tokens.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["arkm","circulating"],"host":["https://api.arkm.com"],"query":[],"variable":[]}},"response":[{"id":"e24a8ca7-91bd-49fc-a955-34083d5fb2c6","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.arkm.com/arkm/circulating","description":"Returns the current circulating supply of ARKM tokens."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"amount\": 658912429\n}"}],"_postman_id":"b5480672-cad0-4f46-92b9-4499f04243ed"}],"id":"bb1e45d7-c3b4-4fd2-a869-df34866aec1e","_postman_id":"bb1e45d7-c3b4-4fd2-a869-df34866aec1e","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}}},{"name":"balances","item":[{"name":"Get token balances for an address","id":"3bf0c00b-ba24-4fec-a9ae-e8cd1156aa52","request":{"method":"GET","header":[],"url":"https://api.arkm.com/balances/address/:address?chains=ethereum,bsc,polygon","description":"<p>Returns token balances for the specified address, optionally filtered by chains.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["balances","address",":address"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,bsc'). If omitted, returns balances across all supported chains.</p>\n","type":"text/plain"},"key":"chains","value":"ethereum,bsc,polygon"}],"variable":[{"id":"eb58cf10-c214-4e15-8a59-8ba977a8ae46","description":{"content":"<p>Required. The blockchain address to query balances for.</p>\n","type":"text/plain"},"type":"any","value":"0x28C6c06298d514Db089934071355E5743bf21d60","key":"address"}]}},"response":[{"id":"8c861938-4770-4dd6-9878-528c8d1c94f3","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/balances/address/:address?chains=ethereum,bsc,polygon","host":["https://api.arkm.com"],"path":["balances","address",":address"],"query":[{"key":"chains","value":"ethereum,bsc,polygon","description":"Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,bsc'). If omitted, returns balances across all supported chains."}],"variable":[{"key":"address","value":"0x28C6c06298d514Db089934071355E5743bf21d60","description":"Required. The blockchain address to query balances for."}]},"description":"Returns token balances for the specified address, optionally filtered by chains."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"addresses\": {\n    \"bsc\": {\n      \"0x28C6c06298d514Db089934071355E5743bf21d60\": {\n        \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n        \"arkhamEntity\": {\n          \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n          \"id\": \"binance\",\n          \"linkedin\": \"https://www.linkedin.com/company/binance\",\n          \"name\": \"Binance\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/binance\",\n          \"type\": \"cex\",\n          \"website\": \"https://binance.com\"\n        },\n        \"arkhamLabel\": {\n          \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n          \"chainType\": \"evm\",\n          \"name\": \"Hot Wallet\"\n        },\n        \"chain\": \"bsc\",\n        \"contract\": false,\n        \"isUserAddress\": false\n      }\n    },\n    \"ethereum\": {\n      \"0x28C6c06298d514Db089934071355E5743bf21d60\": {\n        \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n        \"arkhamEntity\": {\n          \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n          \"id\": \"binance\",\n          \"linkedin\": \"https://www.linkedin.com/company/binance\",\n          \"name\": \"Binance\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/binance\",\n          \"type\": \"cex\",\n          \"website\": \"https://binance.com\"\n        },\n        \"arkhamLabel\": {\n          \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n          \"chainType\": \"evm\",\n          \"name\": \"Hot Wallet\"\n        },\n        \"chain\": \"ethereum\",\n        \"contract\": false,\n        \"isUserAddress\": false\n      }\n    }\n  },\n  \"balances\": {\n    \"bsc\": [\n      {\n        \"balance\": 3734.2858510100004,\n        \"balanceExact\": \"3734285851010000000000\",\n        \"ethereumAddress\": \"0x55d398326f99059fF775485246999027B3197955\",\n        \"id\": \"binance-bridged-usdt-bnb-smart-chain\",\n        \"name\": \"Tether USD\",\n        \"price\": 1,\n        \"priceChange24h\": 0,\n        \"priceChange24hPercent\": 0,\n        \"quoteTime\": \"2026-07-06T08:56:06.003Z\",\n        \"symbol\": \"USDT\",\n        \"usd\": 3734.2858510100004\n      }\n    ],\n    \"ethereum\": [\n      {\n        \"balance\": 933180509.069545,\n        \"balanceExact\": \"933180509069545\",\n        \"ethereumAddress\": \"0xdAC17F958D2ee523a2206206994597C13D831ec7\",\n        \"id\": \"tether\",\n        \"name\": \"Tether USD\",\n        \"price\": 1,\n        \"priceChange24h\": 0,\n        \"priceChange24hPercent\": 0,\n        \"quoteTime\": \"2026-07-06T08:56:21.074Z\",\n        \"symbol\": \"USDT\",\n        \"usd\": 933180509.069545\n      },\n      {\n        \"balance\": 264229.89222968067,\n        \"balanceExact\": \"264229892229680683921876\",\n        \"id\": \"ethereum\",\n        \"name\": \"Ethereum\",\n        \"price\": 1764.02,\n        \"priceChange24h\": -2.2200000000000273,\n        \"priceChange24hPercent\": -0.12569073285623852,\n        \"quoteTime\": \"2026-07-06T08:56:12.855Z\",\n        \"symbol\": \"ETH\",\n        \"usd\": 466106814.4910013\n      }\n    ]\n  },\n  \"totalBalance\": {\n    \"bsc\": 4958.963746508313,\n    \"ethereum\": 1851859770.8709288\n  },\n  \"totalBalance24hAgo\": {\n    \"bsc\": 4962.53510092634,\n    \"ethereum\": 1855389918.2681246\n  }\n}"}],"_postman_id":"3bf0c00b-ba24-4fec-a9ae-e8cd1156aa52"},{"name":"Get token balances for an entity","id":"4ad913fc-e8c4-4496-9bff-697b32a69cad","request":{"method":"GET","header":[],"url":"https://api.arkm.com/balances/entity/:entity?chains=ethereum,bsc,polygon","description":"<p>Returns token balances for the specified entity, optionally filtered by chains.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["balances","entity",":entity"],"host":["https://api.arkm.com"],"query":[{"disabled":true,"description":{"content":"<p>Optional. If 'true', uses a faster but less real-time balance query (up to 24 hours delayed).</p>\n","type":"text/plain"},"key":"cheap","value":"true"},{"description":{"content":"<p>Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,bsc'). If omitted, returns balances across all supported chains.</p>\n","type":"text/plain"},"key":"chains","value":"ethereum,bsc,polygon"}],"variable":[{"id":"41add3f7-ba43-4dbf-ae34-078603176597","description":{"content":"<p>Required. The entity ID to query balances for.</p>\n","type":"text/plain"},"type":"any","value":"binance","key":"entity"}]}},"response":[{"id":"d2b9175b-86b8-4602-a26c-99a05a21c295","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/balances/entity/:entity?chains=ethereum,bsc,polygon","host":["https://api.arkm.com"],"path":["balances","entity",":entity"],"query":[{"key":"cheap","value":"true","description":"Optional. If 'true', uses a faster but less real-time balance query (up to 24 hours delayed).","disabled":true},{"key":"chains","value":"ethereum,bsc,polygon","description":"Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,bsc'). If omitted, returns balances across all supported chains."}],"variable":[{"key":"entity","value":"binance","description":"Required. The entity ID to query balances for."}]},"description":"Returns token balances for the specified entity, optionally filtered by chains."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"balances\": {\n    \"bsc\": [\n      {\n        \"balance\": 40881.77844727871,\n        \"id\": \"binance-bitcoin\",\n        \"name\": \"Binance Bitcoin\",\n        \"price\": 65027,\n        \"priceChange24h\": 950,\n        \"priceChange24hPercent\": 1.4825912573934485,\n        \"quoteTime\": \"2026-06-22T13:23:37.62Z\",\n        \"symbol\": \"BTCB\",\n        \"usd\": 2658419407.0911927\n      }\n    ],\n    \"ethereum\": [\n      {\n        \"balance\": 40046128192.73723,\n        \"id\": \"tether\",\n        \"name\": \"Tether\",\n        \"price\": 1,\n        \"priceChange24h\": 0,\n        \"priceChange24hPercent\": 0,\n        \"quoteTime\": \"2026-06-22T13:24:28.299Z\",\n        \"symbol\": \"USDT\",\n        \"usd\": 40046128192.73723\n      },\n      {\n        \"balance\": 7422685972.66057,\n        \"id\": \"usd-coin\",\n        \"name\": \"USDC\",\n        \"price\": 1,\n        \"priceChange24h\": 0,\n        \"priceChange24hPercent\": 0,\n        \"quoteTime\": \"2026-06-22T13:24:30.156Z\",\n        \"symbol\": \"USDC\",\n        \"usd\": 7422685972.66057\n      }\n    ]\n  },\n  \"entities\": {\n    \"binance\": {\n      \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n      \"description\": \"\",\n      \"id\": \"binance\",\n      \"linkedin\": \"https://www.linkedin.com/company/binance\",\n      \"name\": \"Binance\",\n      \"note\": \"\",\n      \"populatedTags\": [\n        {\n          \"disablePage\": false,\n          \"excludeEntities\": false,\n          \"id\": \"proof-of-reserves\",\n          \"label\": \"Binance Proof of Reserves\",\n          \"rank\": 20,\n          \"tagParams\": \"Binance\"\n        }\n      ],\n      \"service\": null,\n      \"twitter\": \"https://twitter.com/binance\",\n      \"type\": \"cex\",\n      \"website\": \"https://binance.com\"\n    }\n  },\n  \"totalBalance\": {\n    \"bsc\": 11662208524.033506,\n    \"ethereum\": 66276809360.97472\n  },\n  \"totalBalance24hAgo\": {\n    \"bsc\": 11595187303.045288,\n    \"ethereum\": 65932976474.17882\n  }\n}"}],"_postman_id":"4ad913fc-e8c4-4496-9bff-697b32a69cad"},{"name":"Get Solana subaccount balances for addresses","id":"49ea6290-fa92-4c3b-86c9-5e165dda3157","request":{"method":"GET","header":[],"url":"https://api.arkm.com/balances/solana/subaccounts/address/:addresses?pricingID=jito-staked-sol","description":"<p>Returns token balances from Solana subaccounts (staking, lending, etc.) for the specified addresses.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["balances","solana","subaccounts","address",":addresses"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Required. The CoinGecko pricing ID of the token to query subaccount balances for. Filters results to balances of this token.</p>\n","type":"text/plain"},"key":"pricingID","value":"jito-staked-sol"},{"disabled":true,"description":{"content":"<p>Optional. Maximum number of subaccount balance entries to return. Default: 1000.</p>\n","type":"text/plain"},"key":"limit","value":"1000"}],"variable":[{"id":"ae5cc098-16f3-4925-ab3b-c272ac0cb71d","description":{"content":"<p>Required. Comma-separated list of Solana addresses to query subaccount balances for.</p>\n","type":"text/plain"},"type":"any","value":"GxDDTT1zqgH2aNgdoyDvEgvHdsLq91JAExCTao7c5GT4","key":"addresses"}]}},"response":[{"id":"ac72de6e-08e1-455b-ae18-7d897a5d91ef","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/balances/solana/subaccounts/address/:addresses?pricingID=jito-staked-sol","host":["https://api.arkm.com"],"path":["balances","solana","subaccounts","address",":addresses"],"query":[{"key":"pricingID","value":"jito-staked-sol","description":"Required. The CoinGecko pricing ID of the token to query subaccount balances for. Filters results to balances of this token."},{"key":"limit","value":"1000","description":"Optional. Maximum number of subaccount balance entries to return. Default: 1000.","disabled":true}],"variable":[{"key":"addresses","value":"GxDDTT1zqgH2aNgdoyDvEgvHdsLq91JAExCTao7c5GT4","description":"Required. Comma-separated list of Solana addresses to query subaccount balances for."}]},"description":"Returns token balances from Solana subaccounts (staking, lending, etc.) for the specified addresses."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"address\": \"BCjNfgiZYpfZG2aTDDFw5dL4zu7cwBRdv2v8FsnjK6Dy\",\n    \"balance\": 508628.141646117,\n    \"balanceExact\": \"508628141646117\",\n    \"id\": \"jito-staked-sol\",\n    \"name\": \"Jito Staked SOL\",\n    \"ownerAddress\": \"GxDDTT1zqgH2aNgdoyDvEgvHdsLq91JAExCTao7c5GT4\",\n    \"price\": 87.73,\n    \"symbol\": \"JitoSOL\",\n    \"usd\": 44621946.86661385\n  }\n]"}],"_postman_id":"49ea6290-fa92-4c3b-86c9-5e165dda3157"},{"name":"Get Solana subaccount balances for entities","id":"a01b7095-5b50-4471-beaa-68ab0b101d64","request":{"method":"GET","header":[],"url":"https://api.arkm.com/balances/solana/subaccounts/entity/:entities?pricingID=tensor","description":"<p>Returns token balances from Solana subaccounts (staking, lending, etc.) for the specified entities.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["balances","solana","subaccounts","entity",":entities"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Required. The CoinGecko pricing ID of the token to query subaccount balances for. Filters results to balances of this token.</p>\n","type":"text/plain"},"key":"pricingID","value":"tensor"},{"disabled":true,"description":{"content":"<p>Optional. Maximum number of subaccount balance entries to return. Default: 1000.</p>\n","type":"text/plain"},"key":"limit","value":"1000"}],"variable":[{"id":"a81afa89-919e-4be4-95b4-359b7fc1cafa","description":{"content":"<p>Required. Comma-separated list of entity IDs to query subaccount balances for.</p>\n","type":"text/plain"},"type":"any","value":"binance,coinbase","key":"entities"}]}},"response":[{"id":"f2aa6e9c-366a-4488-b9dc-961eafb519d4","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/balances/solana/subaccounts/entity/:entities?pricingID=tensor","host":["https://api.arkm.com"],"path":["balances","solana","subaccounts","entity",":entities"],"query":[{"key":"pricingID","value":"tensor","description":"Required. The CoinGecko pricing ID of the token to query subaccount balances for. Filters results to balances of this token."},{"key":"limit","value":"1000","description":"Optional. Maximum number of subaccount balance entries to return. Default: 1000.","disabled":true}],"variable":[{"key":"entities","value":"binance,coinbase","description":"Required. Comma-separated list of entity IDs to query subaccount balances for."}]},"description":"Returns token balances from Solana subaccounts (staking, lending, etc.) for the specified entities."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"address\": \"GugV3a7dGm2n5SDmsoiWKgaPGjwkoMBuz1wQaDCAftKb\",\n    \"balance\": 73296943.94763146,\n    \"balanceExact\": \"73296943947631461\",\n    \"id\": \"tensor\",\n    \"name\": \"Tensor\",\n    \"ownerAddress\": \"5tzFkiKscXHK5ZXCGbXZxdw7gTjjD1mBwuoFbhUvuAi9\",\n    \"price\": 0.04028654,\n    \"symbol\": \"TNSR\",\n    \"usd\": 2952880.2642240124\n  }\n]"}],"_postman_id":"a01b7095-5b50-4471-beaa-68ab0b101d64"}],"id":"5a2047fe-f763-42ed-8381-e318e0d5664b","_postman_id":"5a2047fe-f763-42ed-8381-e318e0d5664b","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}}},{"name":"chains","item":[{"name":"Get supported chains list","id":"edddc570-de36-488e-9a73-07fdd2af5d04","request":{"method":"GET","header":[],"url":"https://api.arkm.com/chains","description":"<p>Retrieves a list of supported blockchain chains.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["chains"],"host":["https://api.arkm.com"],"query":[],"variable":[]}},"response":[{"id":"09e7e07d-b166-47b2-8403-433432cd9d17","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.arkm.com/chains","description":"Retrieves a list of supported blockchain chains."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  \"ethereum\",\n  \"bitcoin\",\n  \"tron\",\n  \"polygon\",\n  \"bsc\"\n]"}],"_postman_id":"edddc570-de36-488e-9a73-07fdd2af5d04"}],"id":"02beed9c-34ac-44b2-b81d-2db1cfdd15d3","_postman_id":"02beed9c-34ac-44b2-b81d-2db1cfdd15d3","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}}},{"name":"cluster","item":[{"name":"Get cluster summary statistics","id":"a8429222-e582-405f-b029-74528289c985","request":{"method":"GET","header":[],"url":"https://api.arkm.com/cluster/:id/summary","description":"<p>Returns summary statistics for the specified cluster, including:</p>\n<ul>\n<li>Total number of unique addresses in the cluster</li>\n<li>Total balance in USD</li>\n<li>Total transaction volume in USD</li>\n<li>First and last transaction timestamps</li>\n</ul>\n<p>Clusters are groups of addresses that have been linked together through on-chain heuristics (e.g., Bitcoin input clustering).</p>\n<p>To find a cluster ID, look up an address with GET /intelligence/address_enriched/{address} and read its clusterIds field.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["cluster",":id","summary"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"52eb3823-7377-47e2-befa-b94440edfa2d","description":{"content":"<p>Required. The ID of the cluster to summarize.</p>\n","type":"text/plain"},"type":"any","value":"00000002aae817c1a0d2ec3c91ede74c64c92c83658decdad52b591451948d75a9ca","key":"id"}]}},"response":[{"id":"204e279a-089d-4b41-946c-f10583cefe27","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/cluster/:id/summary","host":["https://api.arkm.com"],"path":["cluster",":id","summary"],"variable":[{"key":"id","value":"00000002aae817c1a0d2ec3c91ede74c64c92c83658decdad52b591451948d75a9ca","description":"Required. The ID of the cluster to summarize."}]},"description":"Returns summary statistics for the specified cluster, including:\n- Total number of unique addresses in the cluster\n- Total balance in USD\n- Total transaction volume in USD\n- First and last transaction timestamps\n\nClusters are groups of addresses that have been linked together through on-chain heuristics (e.g., Bitcoin input clustering).\n\nTo find a cluster ID, look up an address with GET /intelligence/address_enriched/{address} and read its clusterIds field."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"balanceUsd\": 270448104.02,\n  \"clusterId\": \"00000002aae817c1a0d2ec3c91ede74c64c92c83658decdad52b591451948d75a9ca\",\n  \"firstTx\": \"2018-11-12T14:22:37Z\",\n  \"lastTx\": \"2026-06-19T00:58:41Z\",\n  \"numAddresses\": 1894908,\n  \"volumeUsd\": 1782634995673.44\n}"}],"_postman_id":"a8429222-e582-405f-b029-74528289c985"}],"id":"1fc02a32-41bc-420e-889b-78b30874fa27","_postman_id":"1fc02a32-41bc-420e-889b-78b30874fa27","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}}},{"name":"counterparties","item":[{"name":"Get top counterparties for an address","id":"4b5c0809-4684-4602-b9b3-8c47ff758684","request":{"method":"GET","header":[],"url":"https://api.arkm.com/counterparties/address/:address?chains=ethereum,bsc,polygon&timeLast=24h","description":"<p>Returns aggregated counterparty activity by volume for the specified address.</p>\n<p>Supports filtering by transfer direction, chain, token, time range, and minimum USD volume.</p>\n<p><strong>Rate Limit</strong>: This endpoint has a stricter rate limit of 1 request per second.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["counterparties","address",":address"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Optional. Chains to filter by, as a single comma-separated value (e.g. 'base,bsc'). If omitted, returns counterparties across all supported chains.</p>\n","type":"text/plain"},"key":"chains","value":"ethereum,bsc,polygon"},{"disabled":true,"description":{"content":"<p>Optional. Transfer direction. Only \"in\" or \"out\" are accepted (omit for both directions).</p>\n","type":"text/plain"},"key":"flow","value":"in"},{"disabled":true,"description":{"content":"<p>Optional. Comma-separated list of token addresses or token IDs; matches counterparties involving any of them.</p>\n","type":"text/plain"},"key":"tokens","value":"ethereum,0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"},{"disabled":true,"description":{"content":"<p>Optional. Filter to activity after this time. Accepts RFC 3339, Unix seconds/ms, or YYYY-MM-DD.</p>\n","type":"text/plain"},"key":"timeGte","value":"2024-01-01T00:00:00Z"},{"disabled":true,"description":{"content":"<p>Optional. Filter to activity before this time. Accepts RFC 3339, Unix seconds/ms, or YYYY-MM-DD.</p>\n","type":"text/plain"},"key":"timeLte","value":"2024-06-01T00:00:00Z"},{"description":{"content":"<p>Optional. Filter to activity within this duration before now (e.g. 24h, 7d). Cannot be combined with timeGte/timeLte.</p>\n","type":"text/plain"},"key":"timeLast","value":"24h"},{"disabled":true,"description":{"content":"<p>Optional. Filter to counterparties whose aggregated USD volume is at least this value.</p>\n","type":"text/plain"},"key":"usdGte","value":"100.23"},{"disabled":true,"description":{"content":"<p>Optional. Maximum number of results to return. Default: 20. Max: 1000.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"disabled":true,"description":{"content":"<p>Optional. List of counterparty tags to filter by.</p>\n","type":"text/plain"},"key":"tags","value":"whale,kol"}],"variable":[{"id":"6f0fa6e3-d212-4056-9a25-86df9c91cd33","description":{"content":"<p>Required. The address to query counterparties for. A comma-separated list is also accepted — their counterparties are aggregated (per-counterparty volume summed across the listed addresses).</p>\n","type":"text/plain"},"type":"any","value":"0x28C6c06298d514Db089934071355E5743bf21d60","key":"address"}]}},"response":[{"id":"d57be0cb-2067-4464-9b39-5138ff7890aa","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/counterparties/address/:address?chains=ethereum,bsc,polygon&timeLast=24h","host":["https://api.arkm.com"],"path":["counterparties","address",":address"],"query":[{"key":"chains","value":"ethereum,bsc,polygon","description":"Optional. Chains to filter by, as a single comma-separated value (e.g. 'base,bsc'). If omitted, returns counterparties across all supported chains."},{"key":"flow","value":"in","description":"Optional. Transfer direction. Only \"in\" or \"out\" are accepted (omit for both directions).","disabled":true},{"key":"tokens","value":"ethereum,0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","description":"Optional. Comma-separated list of token addresses or token IDs; matches counterparties involving any of them.","disabled":true},{"key":"timeGte","value":"2024-01-01T00:00:00Z","description":"Optional. Filter to activity after this time. Accepts RFC 3339, Unix seconds/ms, or YYYY-MM-DD.","disabled":true},{"key":"timeLte","value":"2024-06-01T00:00:00Z","description":"Optional. Filter to activity before this time. Accepts RFC 3339, Unix seconds/ms, or YYYY-MM-DD.","disabled":true},{"key":"timeLast","value":"24h","description":"Optional. Filter to activity within this duration before now (e.g. 24h, 7d). Cannot be combined with timeGte/timeLte."},{"key":"usdGte","value":"100.23","description":"Optional. Filter to counterparties whose aggregated USD volume is at least this value.","disabled":true},{"key":"limit","value":"10","description":"Optional. Maximum number of results to return. Default: 20. Max: 1000.","disabled":true},{"key":"tags","value":"whale,kol","description":"Optional. List of counterparty tags to filter by.","disabled":true}],"variable":[{"key":"address","value":"0x28C6c06298d514Db089934071355E5743bf21d60","description":"Required. The address to query counterparties for. A comma-separated list is also accepted — their counterparties are aggregated (per-counterparty volume summed across the listed addresses)."}]},"description":"Returns aggregated counterparty activity by volume for the specified address.\n\nSupports filtering by transfer direction, chain, token, time range, and minimum USD volume.\n\n**Rate Limit**: This endpoint has a stricter rate limit of 1 request per second."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"base\": [\n    {\n      \"address\": {\n        \"address\": \"0x31beec3942E4Faf3F253c86b51537387d16Ada34\",\n        \"arkhamLabel\": {\n          \"address\": \"0x31beec3942E4Faf3F253c86b51537387d16Ada34\",\n          \"chainType\": \"evm\",\n          \"name\": \"Binance Deposit\"\n        },\n        \"chain\": \"base\",\n        \"contract\": false,\n        \"depositServiceID\": \"binance\",\n        \"isUserAddress\": false\n      },\n      \"chains\": [\n        \"base\"\n      ],\n      \"flow\": \"out\",\n      \"transactionCount\": 1,\n      \"usd\": 5252.65185546875\n    },\n    {\n      \"address\": {\n        \"address\": \"0x6dcBCe46a8B494c885D0e7b6817d2b519dF64467\",\n        \"arkhamEntity\": {\n          \"crunchbase\": \"https://www.crunchbase.com/organization/coinbase\",\n          \"id\": \"coinbase\",\n          \"linkedin\": \"https://www.linkedin.com/company/coinbase\",\n          \"name\": \"Coinbase\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/coinbase\",\n          \"type\": \"cex\",\n          \"website\": \"https://coinbase.com\"\n        },\n        \"arkhamLabel\": {\n          \"address\": \"0x6dcBCe46a8B494c885D0e7b6817d2b519dF64467\",\n          \"chainType\": \"evm\",\n          \"name\": \"Hot Wallet\"\n        },\n        \"chain\": \"base\",\n        \"contract\": false,\n        \"isUserAddress\": false\n      },\n      \"chains\": [\n        \"base\"\n      ],\n      \"flow\": \"in\",\n      \"transactionCount\": 1,\n      \"usd\": 2028.17822265625\n    }\n  ],\n  \"bsc\": [\n    {\n      \"address\": {\n        \"address\": \"0xF977814e90dA44bFA03b6295A0616a897441aceC\",\n        \"arkhamEntity\": {\n          \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n          \"id\": \"binance\",\n          \"linkedin\": \"https://www.linkedin.com/company/binance\",\n          \"name\": \"Binance\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/binance\",\n          \"type\": \"cex\",\n          \"website\": \"https://binance.com\"\n        },\n        \"arkhamLabel\": {\n          \"address\": \"0xF977814e90dA44bFA03b6295A0616a897441aceC\",\n          \"chainType\": \"evm\",\n          \"name\": \"Cold Wallet\"\n        },\n        \"chain\": \"bsc\",\n        \"contract\": false,\n        \"isUserAddress\": false\n      },\n      \"chains\": [\n        \"bsc\"\n      ],\n      \"flow\": \"all\",\n      \"transactionCount\": 78,\n      \"usd\": 1014571199.420227\n    },\n    {\n      \"address\": {\n        \"address\": \"0xD65448affe1475F101378A744a62C00F04CF50D6\",\n        \"arkhamEntity\": {\n          \"id\": \"kanga-exchange\",\n          \"name\": \"Kanga Exchange\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/KangaExchange\",\n          \"type\": \"cex\",\n          \"website\": \"https://kanga.exchange/\"\n        },\n        \"arkhamLabel\": {\n          \"address\": \"0xD65448affe1475F101378A744a62C00F04CF50D6\",\n          \"chainType\": \"evm\",\n          \"name\": \"Hot Wallet\"\n        },\n        \"chain\": \"bsc\",\n        \"contract\": false,\n        \"isUserAddress\": false\n      },\n      \"chains\": [\n        \"bsc\"\n      ],\n      \"flow\": \"in\",\n      \"transactionCount\": 1,\n      \"usd\": 3163.48583984375\n    }\n  ]\n}"}],"_postman_id":"4b5c0809-4684-4602-b9b3-8c47ff758684"},{"name":"Get top counterparties for an entity","id":"956a4385-6768-4ed5-9341-45cfd97e5270","request":{"method":"GET","header":[],"url":"https://api.arkm.com/counterparties/entity/:entity?chains=ethereum,bsc,polygon&timeLast=24h","description":"<p>Returns aggregated counterparty activity by volume for the specified entity.</p>\n<p>Supports filtering by transfer direction, chain, token, time range, and minimum USD volume.</p>\n<p><strong>Rate Limit</strong>: This endpoint has a stricter rate limit of 1 request per second.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["counterparties","entity",":entity"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Optional. Chains to filter by, as a single comma-separated value (e.g. 'base,bsc'). If omitted, returns counterparties across all supported chains.</p>\n","type":"text/plain"},"key":"chains","value":"ethereum,bsc,polygon"},{"disabled":true,"description":{"content":"<p>Optional. Transfer direction. Only \"in\" or \"out\" are accepted (omit for both directions).</p>\n","type":"text/plain"},"key":"flow","value":"in"},{"disabled":true,"description":{"content":"<p>Optional. Comma-separated list of token addresses or token IDs; matches counterparties involving any of them.</p>\n","type":"text/plain"},"key":"tokens","value":"ethereum,0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"},{"disabled":true,"description":{"content":"<p>Optional. Filter to activity after this time. Accepts RFC 3339, Unix seconds/ms, or YYYY-MM-DD.</p>\n","type":"text/plain"},"key":"timeGte","value":"2024-01-01T00:00:00Z"},{"disabled":true,"description":{"content":"<p>Optional. Filter to activity before this time. Accepts RFC 3339, Unix seconds/ms, or YYYY-MM-DD.</p>\n","type":"text/plain"},"key":"timeLte","value":"2024-06-01T00:00:00Z"},{"description":{"content":"<p>Optional. Filter to activity within this duration before now (e.g. 24h, 7d). Cannot be combined with timeGte/timeLte.</p>\n","type":"text/plain"},"key":"timeLast","value":"24h"},{"disabled":true,"description":{"content":"<p>Optional. Filter to counterparties whose aggregated USD volume is at least this value.</p>\n","type":"text/plain"},"key":"usdGte","value":"100.23"},{"disabled":true,"description":{"content":"<p>Optional. Maximum number of results to return. Default: 20. Max: 1000.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"disabled":true,"description":{"content":"<p>Optional. List of counterparty tags to filter by.</p>\n","type":"text/plain"},"key":"tags","value":"whale,kol"}],"variable":[{"id":"8467d31e-fbf6-42e7-8ffb-62555591b652","description":{"content":"<p>Required. The entity ID to query counterparties for.</p>\n","type":"text/plain"},"type":"any","value":"vitalik-buterin","key":"entity"}]}},"response":[{"id":"67dee11c-8241-4d6a-875c-f9fbd01a0c6a","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/counterparties/entity/:entity?chains=ethereum,bsc,polygon&timeLast=24h","host":["https://api.arkm.com"],"path":["counterparties","entity",":entity"],"query":[{"key":"chains","value":"ethereum,bsc,polygon","description":"Optional. Chains to filter by, as a single comma-separated value (e.g. 'base,bsc'). If omitted, returns counterparties across all supported chains."},{"key":"flow","value":"in","description":"Optional. Transfer direction. Only \"in\" or \"out\" are accepted (omit for both directions).","disabled":true},{"key":"tokens","value":"ethereum,0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","description":"Optional. Comma-separated list of token addresses or token IDs; matches counterparties involving any of them.","disabled":true},{"key":"timeGte","value":"2024-01-01T00:00:00Z","description":"Optional. Filter to activity after this time. Accepts RFC 3339, Unix seconds/ms, or YYYY-MM-DD.","disabled":true},{"key":"timeLte","value":"2024-06-01T00:00:00Z","description":"Optional. Filter to activity before this time. Accepts RFC 3339, Unix seconds/ms, or YYYY-MM-DD.","disabled":true},{"key":"timeLast","value":"24h","description":"Optional. Filter to activity within this duration before now (e.g. 24h, 7d). Cannot be combined with timeGte/timeLte."},{"key":"usdGte","value":"100.23","description":"Optional. Filter to counterparties whose aggregated USD volume is at least this value.","disabled":true},{"key":"limit","value":"10","description":"Optional. Maximum number of results to return. Default: 20. Max: 1000.","disabled":true},{"key":"tags","value":"whale,kol","description":"Optional. List of counterparty tags to filter by.","disabled":true}],"variable":[{"key":"entity","value":"vitalik-buterin","description":"Required. The entity ID to query counterparties for."}]},"description":"Returns aggregated counterparty activity by volume for the specified entity.\n\nSupports filtering by transfer direction, chain, token, time range, and minimum USD volume.\n\n**Rate Limit**: This endpoint has a stricter rate limit of 1 request per second."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"base\": [\n    {\n      \"address\": {\n        \"address\": \"0x9008D19f58AAbD9eD0D60971565AA8510560ab41\",\n        \"arkhamEntity\": {\n          \"id\": \"cowswap\",\n          \"name\": \"CoW Protocol\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/CoWSwap\",\n          \"type\": \"dex-aggregator\",\n          \"website\": \"https://cow.fi\"\n        },\n        \"arkhamLabel\": {\n          \"address\": \"0x9008D19f58AAbD9eD0D60971565AA8510560ab41\",\n          \"chainType\": \"evm\",\n          \"name\": \"GPv2Settlement\"\n        },\n        \"chain\": \"base\",\n        \"contract\": true,\n        \"isUserAddress\": false\n      },\n      \"chains\": [\n        \"base\",\n        \"ethereum\"\n      ],\n      \"flow\": \"all\",\n      \"transactionCount\": 1224,\n      \"usd\": 107909121.9766097\n    },\n    {\n      \"address\": {\n        \"address\": \"0x33929958868F2a7C5bd8123243dDe6D23C5A6c58\",\n        \"chain\": \"base\",\n        \"contract\": false,\n        \"isUserAddress\": false\n      },\n      \"chains\": [\n        \"base\"\n      ],\n      \"flow\": \"in\",\n      \"transactionCount\": 1,\n      \"usd\": 1280000000\n    }\n  ],\n  \"bsc\": [\n    {\n      \"address\": {\n        \"address\": \"0xE081d4E19D18029Acb1250cDF29Bfd671040f5c7\",\n        \"arkhamLabel\": {\n          \"address\": \"0xE081d4E19D18029Acb1250cDF29Bfd671040f5c7\",\n          \"chainType\": \"evm\",\n          \"name\": \"\\\"kyawaung\\\" on Galxe\"\n        },\n        \"chain\": \"bsc\",\n        \"contract\": false,\n        \"isUserAddress\": false\n      },\n      \"chains\": [\n        \"bsc\"\n      ],\n      \"flow\": \"in\",\n      \"transactionCount\": 1,\n      \"usd\": 1240000000\n    }\n  ]\n}"}],"_postman_id":"956a4385-6768-4ed5-9341-45cfd97e5270"}],"id":"30cbe69a-4aed-4d79-863c-85f5b00c058e","_postman_id":"30cbe69a-4aed-4d79-863c-85f5b00c058e","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}}},{"name":"flow","item":[{"name":"Get historical USD flows for an address","id":"a29666bb-b456-4f90-abb6-eba559a2d69b","request":{"method":"GET","header":[],"url":"https://api.arkm.com/flow/address/:address?chains=ethereum,bsc,polygon","description":"<p>Returns historical USD inflows, outflows, and cumulative totals for the specified address across supported chains.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["flow","address",":address"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,bsc'). If omitted, returns data across all supported chains.</p>\n","type":"text/plain"},"key":"chains","value":"ethereum,bsc,polygon"}],"variable":[{"id":"41bf1747-7fd4-4b5c-b078-40ea042cdfff","description":{"content":"<p>Required. The blockchain address to query flow data for.</p>\n","type":"text/plain"},"type":"any","value":"0x28C6c06298d514Db089934071355E5743bf21d60","key":"address"}]}},"response":[{"id":"0f2ae109-9a4b-446a-bc38-40055cc749fc","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/flow/address/:address?chains=ethereum,bsc,polygon","host":["https://api.arkm.com"],"path":["flow","address",":address"],"query":[{"key":"chains","value":"ethereum,bsc,polygon","description":"Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,bsc'). If omitted, returns data across all supported chains."}],"variable":[{"key":"address","value":"0x28C6c06298d514Db089934071355E5743bf21d60","description":"Required. The blockchain address to query flow data for."}]},"description":"Returns historical USD inflows, outflows, and cumulative totals for the specified address across supported chains."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"bsc\": [\n    {\n      \"cumulativeInflow\": 91579540.89000003,\n      \"cumulativeOutflow\": 92789860.85,\n      \"inflow\": 99.71,\n      \"outflow\": 0,\n      \"time\": \"2023-10-31T00:00:00Z\"\n    },\n    {\n      \"cumulativeInflow\": 91579640.60000002,\n      \"cumulativeOutflow\": 92789860.85,\n      \"inflow\": 2493652.26,\n      \"outflow\": 0,\n      \"time\": \"2023-12-08T00:00:00Z\"\n    }\n  ],\n  \"ethereum\": [\n    {\n      \"cumulativeInflow\": 1027355003822.2888,\n      \"cumulativeOutflow\": 1023262378331.2817,\n      \"inflow\": 523882897.43,\n      \"outflow\": 554928524.09,\n      \"time\": \"2023-12-03T00:00:00Z\"\n    },\n    {\n      \"cumulativeInflow\": 1027878886719.7189,\n      \"cumulativeOutflow\": 1023817306855.3717,\n      \"inflow\": 1312623236.01,\n      \"outflow\": 1204741283.07,\n      \"time\": \"2023-12-04T00:00:00Z\"\n    }\n  ]\n}"}],"_postman_id":"a29666bb-b456-4f90-abb6-eba559a2d69b"},{"name":"Get historical USD flows for an entity","id":"7694a9ac-dbe3-4a9b-bbda-7fec8b27e737","request":{"method":"GET","header":[],"url":"https://api.arkm.com/flow/entity/:entity?chains=ethereum,bsc,polygon","description":"<p>Returns historical USD inflows, outflows, and cumulative totals for the specified entity across supported chains.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["flow","entity",":entity"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,bitcoin'). If omitted, returns data across all supported chains.</p>\n","type":"text/plain"},"key":"chains","value":"ethereum,bsc,polygon"}],"variable":[{"id":"05ca7031-4fb1-435a-a2c5-4bfdc04cf4b4","description":{"content":"<p>Required. The entity ID to query flow data for.</p>\n","type":"text/plain"},"type":"any","value":"binance","key":"entity"}]}},"response":[{"id":"4141482f-58cd-43e4-a787-4b9164924bd9","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/flow/entity/:entity?chains=ethereum,bsc,polygon","host":["https://api.arkm.com"],"path":["flow","entity",":entity"],"query":[{"key":"chains","value":"ethereum,bsc,polygon","description":"Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,bitcoin'). If omitted, returns data across all supported chains."}],"variable":[{"key":"entity","value":"binance","description":"Required. The entity ID to query flow data for."}]},"description":"Returns historical USD inflows, outflows, and cumulative totals for the specified entity across supported chains."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"bitcoin\": [\n    {\n      \"cumulativeInflow\": 905891016225.6693,\n      \"cumulativeOutflow\": 889779478783.3397,\n      \"inflow\": 6565472523.45,\n      \"outflow\": 6632247150.18,\n      \"time\": \"2022-01-21T00:00:00Z\"\n    },\n    {\n      \"cumulativeInflow\": 912456488749.1193,\n      \"cumulativeOutflow\": 896411725933.5198,\n      \"inflow\": 528887137.66,\n      \"outflow\": 660515462.75,\n      \"time\": \"2022-01-22T00:00:00Z\"\n    }\n  ],\n  \"ethereum\": [\n    {\n      \"cumulativeInflow\": 1425833420702.8699,\n      \"cumulativeOutflow\": 1396841791568.5383,\n      \"inflow\": 1588990961.6,\n      \"outflow\": 1499520350.86,\n      \"time\": \"2022-01-08T00:00:00Z\"\n    },\n    {\n      \"cumulativeInflow\": 1427422411664.47,\n      \"cumulativeOutflow\": 1398341311919.3984,\n      \"inflow\": 1370833866.45,\n      \"outflow\": 1438004592.65,\n      \"time\": \"2022-01-09T00:00:00Z\"\n    }\n  ]\n}"}],"_postman_id":"7694a9ac-dbe3-4a9b-bbda-7fec8b27e737"}],"id":"97acf27c-d08b-4b9a-a5b3-ca48cee8fe0b","_postman_id":"97acf27c-d08b-4b9a-a5b3-ca48cee8fe0b","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}}},{"name":"history","item":[{"name":"Get historical data for an address","id":"0c8f258d-c73f-4139-ba84-d48d26fee819","request":{"method":"GET","header":[],"url":"https://api.arkm.com/history/address/:address?chains=ethereum,bsc,polygon","description":"<p>Returns a daily USD value time series for the specified address.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["history","address",":address"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,bsc'). If omitted, returns data across all supported chains.</p>\n","type":"text/plain"},"key":"chains","value":"ethereum,bsc,polygon"}],"variable":[{"id":"192711ff-d0e1-4179-8b98-65923d897292","description":{"content":"<p>Required. The blockchain address to query historical data for.</p>\n","type":"text/plain"},"type":"any","value":"0x28C6c06298d514Db089934071355E5743bf21d60","key":"address"}]}},"response":[{"id":"51ecb084-dd83-4443-9b57-3c2b7e69eec4","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/history/address/:address?chains=ethereum,bsc,polygon","host":["https://api.arkm.com"],"path":["history","address",":address"],"query":[{"key":"chains","value":"ethereum,bsc,polygon","description":"Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,bsc'). If omitted, returns data across all supported chains."}],"variable":[{"key":"address","value":"0x28C6c06298d514Db089934071355E5743bf21d60","description":"Required. The blockchain address to query historical data for."}]},"description":"Returns a daily USD value time series for the specified address."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"bsc\": [\n    {\n      \"time\": \"2023-12-13T00:00:00Z\",\n      \"usd\": 2844820.37\n    },\n    {\n      \"time\": \"2023-12-14T00:00:00Z\",\n      \"usd\": 3174696.58\n    }\n  ],\n  \"ethereum\": [\n    {\n      \"time\": \"2023-11-29T00:00:00Z\",\n      \"usd\": 2524608983.37\n    },\n    {\n      \"time\": \"2023-11-30T00:00:00Z\",\n      \"usd\": 2535428111.78\n    }\n  ]\n}"}],"_postman_id":"0c8f258d-c73f-4139-ba84-d48d26fee819"},{"name":"Get historical data for an entity","id":"5399de65-7cff-4819-8af4-b1e615b46b6a","request":{"method":"GET","header":[],"url":"https://api.arkm.com/history/entity/:entity?chains=ethereum,bsc,polygon","description":"<p>Returns a daily USD value time series for the specified entity.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["history","entity",":entity"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,bitcoin'). If omitted, returns data across all supported chains.</p>\n","type":"text/plain"},"key":"chains","value":"ethereum,bsc,polygon"}],"variable":[{"id":"98a342d3-7b91-49fe-85be-2f65b7cee796","description":{"content":"<p>Required. The entity ID to query historical data for.</p>\n","type":"text/plain"},"type":"any","value":"binance","key":"entity"}]}},"response":[{"id":"a42f7ff4-8ce5-47c9-8b59-c5e0aa17a060","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/history/entity/:entity?chains=ethereum,bsc,polygon","host":["https://api.arkm.com"],"path":["history","entity",":entity"],"query":[{"key":"chains","value":"ethereum,bsc,polygon","description":"Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,bitcoin'). If omitted, returns data across all supported chains."}],"variable":[{"key":"entity","value":"binance","description":"Required. The entity ID to query historical data for."}]},"description":"Returns a daily USD value time series for the specified entity."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"bitcoin\": [\n    {\n      \"time\": \"2022-01-22T00:00:00Z\",\n      \"usd\": 19480915256.37\n    },\n    {\n      \"time\": \"2022-01-23T00:00:00Z\",\n      \"usd\": 18645267553.47\n    }\n  ],\n  \"ethereum\": [\n    {\n      \"time\": \"2021-12-31T00:00:00Z\",\n      \"usd\": 51606841219.03\n    },\n    {\n      \"time\": \"2022-01-01T00:00:00Z\",\n      \"usd\": 51120113947.47\n    }\n  ]\n}"}],"_postman_id":"5399de65-7cff-4819-8af4-b1e615b46b6a"}],"id":"ef28747b-1cc3-4ec1-b76a-72b91f79ca46","_postman_id":"ef28747b-1cc3-4ec1-b76a-72b91f79ca46","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}}},{"name":"hypercore","item":[{"name":"Check for HyperCore activity","id":"fe1b7d82-9ad5-4ab9-bf1d-15ce2338c2ac","request":{"method":"GET","header":[],"url":"https://api.arkm.com/hypercore/account/:address/active","description":"<p>Whether a HyperCore address has any HyperCore activity: a spot balance, open perp position, margin, staking, or vault equity.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["hypercore","account",":address","active"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"1d16a725-230b-4c64-980e-8a7a2e993dc2","description":{"content":"<p>Required. HyperCore master or sub-account address.</p>\n","type":"text/plain"},"type":"any","value":"0xECB63caA47c7c4E77F60f1cE858Cf28dC2B82b00","key":"address"}]}},"response":[{"id":"a6515d96-5553-4aa9-9461-31e78fe2af73","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/hypercore/account/:address/active","host":["https://api.arkm.com"],"path":["hypercore","account",":address","active"],"variable":[{"key":"address","value":"0xECB63caA47c7c4E77F60f1cE858Cf28dC2B82b00","description":"Required. HyperCore master or sub-account address."}]},"description":"Whether a HyperCore address has any HyperCore activity: a spot balance, open perp position, margin, staking, or vault equity."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"active\": true,\n  \"address\": \"0xecb63caa47c7c4e77f60f1ce858cf28dc2b82b00\"\n}"}],"_postman_id":"fe1b7d82-9ad5-4ab9-bf1d-15ce2338c2ac"},{"name":"Get HyperCore perp positions","id":"2e2a338c-acf0-442d-a386-1b807b0937c5","request":{"method":"GET","header":[],"url":"https://api.arkm.com/hypercore/account/:address/perp-positions","description":"<p>Open perpetual positions for a HyperCore address (master + sub-accounts) with mark price, unrealized PnL, and per-DEX USDC margin.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["hypercore","account",":address","perp-positions"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"d7856336-4240-4fe4-9d66-861426fe9c64","description":{"content":"<p>Required. HyperCore master or sub-account address.</p>\n","type":"text/plain"},"type":"any","value":"0xECB63caA47c7c4E77F60f1cE858Cf28dC2B82b00","key":"address"}]}},"response":[{"id":"eaed9cdc-1ac1-4376-8381-9de8e3dab3ff","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/hypercore/account/:address/perp-positions","host":["https://api.arkm.com"],"path":["hypercore","account",":address","perp-positions"],"variable":[{"key":"address","value":"0xECB63caA47c7c4E77F60f1cE858Cf28dC2B82b00","description":"Required. HyperCore master or sub-account address."}]},"description":"Open perpetual positions for a HyperCore address (master + sub-accounts) with mark price, unrealized PnL, and per-DEX USDC margin."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"accountUsdValue\": 62831603.012425,\n  \"addresses\": [\n    \"0xecb63caa47c7c4e77f60f1ce858cf28dc2b82b00\",\n    \"0x08b095625fb698837fc436c489ce9e4f6ee084c1\",\n    \"0x152600cac5306fd519ccb2bdd4b18a441443428a\",\n    \"0x153ae96fafe232f61b9a19c285b8e8e265642f69\",\n    \"0x37449263a96d00ec4cd68952a3f3c7fd1927d958\",\n    \"0x4304dc380a4c9a452c58707487e185caf992ff05\",\n    \"0x6d9f9706d647d19e93164a7217576797358fa8c3\",\n    \"0x8185204d31602595fadbb9305155e8981762e60c\",\n    \"0x82578861165b62466f8e11e51efe74455ed0e1a6\",\n    \"0x88f9bd20b748c3e533374fa201621ceb119ee9db\",\n    \"0x8af63f51e0c60851a30da696a6a0911a3d019d5e\",\n    \"0x8fecb60f12fd9a3db6901b8a7703a24fa2ee1268\",\n    \"0x90e678b96a3d15bac0e109535692be5361571652\",\n    \"0x91ea0caf217cb0e51d833d9b66464371fb9d1c5b\",\n    \"0xa3e4be245fa0cbd5df1718c33cb9c08af5796f3b\",\n    \"0xb3514b307d17e09d2086738b62ac5db371692d9d\",\n    \"0xba6be69a57e42572df416997af3b7dcdd59ef360\",\n    \"0xc21f25650fd7165905e94014529261070c4530a3\",\n    \"0xc64283a986819174aa0b13b22ff9ab55ac2bd394\",\n    \"0xe78030f0e93def6280f7331edb81db4a3f547633\",\n    \"0xefee01d3a0d06c188627d98b6aa814f401f87c4b\",\n    \"0xfa452867a690af8bc0a3aa585facaf8e70e65ef8\",\n    \"0xff1ec702af93ac3e9537d9e24c2c4750d44cbf75\"\n  ],\n  \"dexBalances\": [\n    {\n      \"dex\": \"xyz\",\n      \"usdcBalance\": 10084680.877152\n    },\n    {\n      \"dex\": \"vntl\",\n      \"usdcBalance\": 0\n    },\n    {\n      \"dex\": \"cash\",\n      \"usdcBalance\": 0.004359\n    }\n  ],\n  \"positions\": [\n    {\n      \"address\": \"0xecb63caa47c7c4e77f60f1ce858cf28dc2b82b00\",\n      \"coin\": \"xyz:XYZ100\",\n      \"direction\": \"long\",\n      \"entryPx\": 28568.39,\n      \"leverageType\": \"cross\",\n      \"leverageValue\": 3,\n      \"markPx\": 28523.999999999996,\n      \"maxLeverage\": 30,\n      \"positionValue\": 79536.3216,\n      \"szi\": 2.7884,\n      \"unrealizedPnl\": -123.78444\n    },\n    {\n      \"address\": \"0xecb63caa47c7c4e77f60f1ce858cf28dc2b82b00\",\n      \"coin\": \"xyz:TSLA\",\n      \"direction\": \"long\",\n      \"entryPx\": 392.186,\n      \"leverageType\": \"cross\",\n      \"leverageValue\": 3,\n      \"markPx\": 380.03000000000003,\n      \"maxLeverage\": 20,\n      \"positionValue\": 608103.86441,\n      \"szi\": 1600.147,\n      \"underlyingPricingId\": \"tesla-xstock\",\n      \"underlyingSymbol\": \"TSLAX\",\n      \"unrealizedPnl\": -19451.467595\n    },\n    {\n      \"address\": \"0xecb63caa47c7c4e77f60f1ce858cf28dc2b82b00\",\n      \"coin\": \"xyz:NVDA\",\n      \"direction\": \"long\",\n      \"entryPx\": 206.302,\n      \"leverageType\": \"cross\",\n      \"leverageValue\": 3,\n      \"markPx\": 203.20000000000002,\n      \"maxLeverage\": 20,\n      \"positionValue\": 847307.424,\n      \"szi\": 4169.82,\n      \"underlyingPricingId\": \"nvidia-xstock\",\n      \"underlyingSymbol\": \"NVDAX\",\n      \"unrealizedPnl\": -12935.268385\n    }\n  ],\n  \"unrealizedPnl\": 1015323.5175330002,\n  \"usdcBalance\": 179763906.134545\n}"}],"_postman_id":"2e2a338c-acf0-442d-a386-1b807b0937c5"},{"name":"Get HyperCore account value / PnL history","id":"50239b74-6441-43ec-92b2-2a271775261e","request":{"method":"GET","header":[],"url":"https://api.arkm.com/hypercore/account/:address/portfolio-history","description":"<p>Live account-value and PnL time series per timeframe (day, week, month, allTime) for a HyperCore address. Not aggregated across sub-accounts.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["hypercore","account",":address","portfolio-history"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"44de5b29-c1a4-46d9-b2cf-cc6a248933b4","description":{"content":"<p>Required. HyperCore master or sub-account address.</p>\n","type":"text/plain"},"type":"any","value":"0xECB63caA47c7c4E77F60f1cE858Cf28dC2B82b00","key":"address"}]}},"response":[{"id":"39c95e4a-8b62-4544-88e0-d06e266def7d","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/hypercore/account/:address/portfolio-history","host":["https://api.arkm.com"],"path":["hypercore","account",":address","portfolio-history"],"variable":[{"key":"address","value":"0xECB63caA47c7c4E77F60f1cE858Cf28dC2B82b00","description":"Required. HyperCore master or sub-account address."}]},"description":"Live account-value and PnL time series per timeframe (day, week, month, allTime) for a HyperCore address. Not aggregated across sub-accounts."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"address\": \"0xecb63caa47c7c4e77f60f1ce858cf28dc2b82b00\",\n  \"periods\": [\n    {\n      \"accountValue\": [\n        {\n          \"time\": 1784246344057,\n          \"value\": 95092178.097197\n        },\n        {\n          \"time\": 1784298591213,\n          \"value\": 98859536.656199\n        }\n      ],\n      \"period\": \"day\",\n      \"pnl\": [\n        {\n          \"time\": 1784224644641,\n          \"value\": 849540.7263119817\n        },\n        {\n          \"time\": 1784298591213,\n          \"value\": 1945082.7996740043\n        }\n      ]\n    },\n    {\n      \"accountValue\": [\n        {\n          \"time\": 1783727877035,\n          \"value\": 91759827.573454\n        },\n        {\n          \"time\": 1783814323032,\n          \"value\": 96805222.506593\n        },\n        {\n          \"time\": 1783896617062,\n          \"value\": 101532293.403535\n        }\n      ],\n      \"period\": \"week\",\n      \"pnl\": [\n        {\n          \"time\": 1784073197689,\n          \"value\": -2659247.7237069905\n        },\n        {\n          \"time\": 1784138060004,\n          \"value\": -3659770.578257978\n        },\n        {\n          \"time\": 1784224644641,\n          \"value\": -2810229.8519459963\n        }\n      ]\n    }\n  ]\n}"}],"_postman_id":"50239b74-6441-43ec-92b2-2a271775261e"},{"name":"Get HyperCore spot balances","id":"53493a9c-b029-4e72-ae83-b967e68c0178","request":{"method":"GET","header":[],"url":"https://api.arkm.com/hypercore/account/:address/spot-balances","description":"<p>Spot token balances for a HyperCore address (master + sub-accounts), each valued in USD at the spot mid price.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["hypercore","account",":address","spot-balances"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"aa67eacc-5bc6-4ada-81e3-444d61a59e23","description":{"content":"<p>Required. HyperCore master or sub-account address.</p>\n","type":"text/plain"},"type":"any","value":"0xECB63caA47c7c4E77F60f1cE858Cf28dC2B82b00","key":"address"}]}},"response":[{"id":"06c497a9-3255-4256-9ca3-6af559e35b4c","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/hypercore/account/:address/spot-balances","host":["https://api.arkm.com"],"path":["hypercore","account",":address","spot-balances"],"variable":[{"key":"address","value":"0xECB63caA47c7c4E77F60f1cE858Cf28dC2B82b00","description":"Required. HyperCore master or sub-account address."}]},"description":"Spot token balances for a HyperCore address (master + sub-accounts), each valued in USD at the spot mid price."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"addresses\": [\n    \"0xecb63caa47c7c4e77f60f1ce858cf28dc2b82b00\",\n    \"0x08b095625fb698837fc436c489ce9e4f6ee084c1\",\n    \"0x152600cac5306fd519ccb2bdd4b18a441443428a\",\n    \"0x153ae96fafe232f61b9a19c285b8e8e265642f69\",\n    \"0x37449263a96d00ec4cd68952a3f3c7fd1927d958\",\n    \"0x4304dc380a4c9a452c58707487e185caf992ff05\",\n    \"0x6d9f9706d647d19e93164a7217576797358fa8c3\",\n    \"0x8185204d31602595fadbb9305155e8981762e60c\",\n    \"0x82578861165b62466f8e11e51efe74455ed0e1a6\",\n    \"0x88f9bd20b748c3e533374fa201621ceb119ee9db\",\n    \"0x8af63f51e0c60851a30da696a6a0911a3d019d5e\",\n    \"0x8fecb60f12fd9a3db6901b8a7703a24fa2ee1268\",\n    \"0x90e678b96a3d15bac0e109535692be5361571652\",\n    \"0x91ea0caf217cb0e51d833d9b66464371fb9d1c5b\",\n    \"0xa3e4be245fa0cbd5df1718c33cb9c08af5796f3b\",\n    \"0xb3514b307d17e09d2086738b62ac5db371692d9d\",\n    \"0xba6be69a57e42572df416997af3b7dcdd59ef360\",\n    \"0xc21f25650fd7165905e94014529261070c4530a3\",\n    \"0xc64283a986819174aa0b13b22ff9ab55ac2bd394\",\n    \"0xe78030f0e93def6280f7331edb81db4a3f547633\",\n    \"0xefee01d3a0d06c188627d98b6aa814f401f87c4b\",\n    \"0xfa452867a690af8bc0a3aa585facaf8e70e65ef8\",\n    \"0xff1ec702af93ac3e9537d9e24c2c4750d44cbf75\"\n  ],\n  \"balances\": [\n    {\n      \"address\": \"0xecb63caa47c7c4e77f60f1ce858cf28dc2b82b00\",\n      \"coin\": \"USDC\",\n      \"hold\": 5417652.57475905,\n      \"token\": 0,\n      \"total\": 10874813.93987035,\n      \"underlyingPricingId\": \"usd-coin\",\n      \"usdPrice\": 1,\n      \"usdValue\": 5457161.3651113\n    },\n    {\n      \"address\": \"0xecb63caa47c7c4e77f60f1ce858cf28dc2b82b00\",\n      \"coin\": \"PURR\",\n      \"entryPx\": 0.08784222575940936,\n      \"hold\": 0,\n      \"token\": 1,\n      \"total\": 129.21127,\n      \"underlyingPricingId\": \"purr-2\",\n      \"underlyingSymbol\": \"PURR\",\n      \"unrealizedPnl\": -2.1359560693949984,\n      \"usdPrice\": 0.0713115,\n      \"usdValue\": 9.214249480605002\n    },\n    {\n      \"address\": \"0xecb63caa47c7c4e77f60f1ce858cf28dc2b82b00\",\n      \"coin\": \"HFUN\",\n      \"hold\": 0,\n      \"token\": 2,\n      \"total\": 0.73279813,\n      \"underlyingPricingId\": \"hypurr-fun\",\n      \"underlyingSymbol\": \"HFUN\",\n      \"usdPrice\": 13.4645,\n      \"usdValue\": 9.866760421385\n    }\n  ],\n  \"totalUsdValue\": 16717217.12361454\n}"}],"_postman_id":"53493a9c-b029-4e72-ae83-b967e68c0178"},{"name":"Get HyperCore sub-accounts","id":"99750d9a-9487-439e-bace-b8c196220830","request":{"method":"GET","header":[],"url":"https://api.arkm.com/hypercore/account/:address/subaccounts","description":"<p>Sub-accounts (name, address, vault flag) indexed for a HyperCore master address.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["hypercore","account",":address","subaccounts"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"b21847bc-ee3a-4aa6-b050-2765d2cae7a1","description":{"content":"<p>Required. HyperCore master or sub-account address.</p>\n","type":"text/plain"},"type":"any","value":"0xECB63caA47c7c4E77F60f1cE858Cf28dC2B82b00","key":"address"}]}},"response":[{"id":"23a60684-95ca-4474-9910-c3a191b043e3","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/hypercore/account/:address/subaccounts","host":["https://api.arkm.com"],"path":["hypercore","account",":address","subaccounts"],"variable":[{"key":"address","value":"0xECB63caA47c7c4E77F60f1cE858Cf28dC2B82b00","description":"Required. HyperCore master or sub-account address."}]},"description":"Sub-accounts (name, address, vault flag) indexed for a HyperCore master address."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"address\": \"0xecb63caa47c7c4e77f60f1ce858cf28dc2b82b00\",\n  \"subAccounts\": [\n    {\n      \"address\": \"0x8185204d31602595fadbb9305155e8981762e60c\",\n      \"isVault\": false,\n      \"master\": \"0xecb63caa47c7c4e77f60f1ce858cf28dc2b82b00\",\n      \"name\": \"sub1\"\n    },\n    {\n      \"address\": \"0x37449263a96d00ec4cd68952a3f3c7fd1927d958\",\n      \"isVault\": false,\n      \"master\": \"0xecb63caa47c7c4e77f60f1ce858cf28dc2b82b00\",\n      \"name\": \"sub10\"\n    },\n    {\n      \"address\": \"0x152600cac5306fd519ccb2bdd4b18a441443428a\",\n      \"isVault\": false,\n      \"master\": \"0xecb63caa47c7c4e77f60f1ce858cf28dc2b82b00\",\n      \"name\": \"sub11\"\n    }\n  ]\n}"}],"_postman_id":"99750d9a-9487-439e-bace-b8c196220830"},{"name":"Get HyperCore account value summary","id":"e2267614-52c0-4a8f-8a3c-8b7d4c2dde55","request":{"method":"GET","header":[],"url":"https://api.arkm.com/hypercore/account/:address/summary","description":"<p>Total account value (spot USD + perp equity + staked HYPE) for a HyperCore address. A master address aggregates across all of its sub-accounts; a sub-account returns only its own value.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["hypercore","account",":address","summary"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"e790eda5-0d69-469c-b190-1ff7dab18433","description":{"content":"<p>Required. HyperCore master or sub-account address.</p>\n","type":"text/plain"},"type":"any","value":"0xECB63caA47c7c4E77F60f1cE858Cf28dC2B82b00","key":"address"}]}},"response":[{"id":"d5285485-1262-4f63-abf6-c139bc60b54c","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/hypercore/account/:address/summary","host":["https://api.arkm.com"],"path":["hypercore","account",":address","summary"],"variable":[{"key":"address","value":"0xECB63caA47c7c4E77F60f1cE858Cf28dC2B82b00","description":"Required. HyperCore master or sub-account address."}]},"description":"Total account value (spot USD + perp equity + staked HYPE) for a HyperCore address. A master address aggregates across all of its sub-accounts; a sub-account returns only its own value."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"address\": \"0xecb63caa47c7c4e77f60f1ce858cf28dc2b82b00\",\n  \"addresses\": [\n    \"0xecb63caa47c7c4e77f60f1ce858cf28dc2b82b00\",\n    \"0x08b095625fb698837fc436c489ce9e4f6ee084c1\",\n    \"0x152600cac5306fd519ccb2bdd4b18a441443428a\",\n    \"0x153ae96fafe232f61b9a19c285b8e8e265642f69\",\n    \"0x37449263a96d00ec4cd68952a3f3c7fd1927d958\",\n    \"0x4304dc380a4c9a452c58707487e185caf992ff05\",\n    \"0x6d9f9706d647d19e93164a7217576797358fa8c3\",\n    \"0x8185204d31602595fadbb9305155e8981762e60c\",\n    \"0x82578861165b62466f8e11e51efe74455ed0e1a6\",\n    \"0x88f9bd20b748c3e533374fa201621ceb119ee9db\",\n    \"0x8af63f51e0c60851a30da696a6a0911a3d019d5e\",\n    \"0x8fecb60f12fd9a3db6901b8a7703a24fa2ee1268\",\n    \"0x90e678b96a3d15bac0e109535692be5361571652\",\n    \"0x91ea0caf217cb0e51d833d9b66464371fb9d1c5b\",\n    \"0xa3e4be245fa0cbd5df1718c33cb9c08af5796f3b\",\n    \"0xb3514b307d17e09d2086738b62ac5db371692d9d\",\n    \"0xba6be69a57e42572df416997af3b7dcdd59ef360\",\n    \"0xc21f25650fd7165905e94014529261070c4530a3\",\n    \"0xc64283a986819174aa0b13b22ff9ab55ac2bd394\",\n    \"0xe78030f0e93def6280f7331edb81db4a3f547633\",\n    \"0xefee01d3a0d06c188627d98b6aa814f401f87c4b\",\n    \"0xfa452867a690af8bc0a3aa585facaf8e70e65ef8\",\n    \"0xff1ec702af93ac3e9537d9e24c2c4750d44cbf75\"\n  ],\n  \"perpPositionCount\": 123,\n  \"perpUnrealizedPnl\": 1015323.5175330002,\n  \"perpUsdValue\": 62831603.012425,\n  \"perpUsdcBalance\": 179763906.134545,\n  \"pricingAvailable\": true,\n  \"spotBalanceCount\": 34,\n  \"spotUsdValue\": 16717217.12361454,\n  \"stakedUsdValue\": 15428141.678624816,\n  \"subAccountCount\": 22,\n  \"totalUsdValue\": 94976961.81466436\n}"}],"_postman_id":"e2267614-52c0-4a8f-8a3c-8b7d4c2dde55"},{"name":"Get HyperCore trade history","id":"a08023d0-e155-4dc6-a915-9b59da460b1a","request":{"method":"GET","header":[],"url":"https://api.arkm.com/hypercore/account/:address/trades","description":"<p>Merged spot and perp fills for a HyperCore address (master + sub-accounts), newest first, paginated via limit/offset.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["hypercore","account",":address","trades"],"host":["https://api.arkm.com"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Max fills to return (default 50, max 200).</p>\n","type":"text/plain"},"key":"limit","value":"50"},{"disabled":true,"description":{"content":"<p>Optional. Pagination offset into the merged fill history. Default: 0.</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[{"id":"7938a754-fe1c-4d63-9787-558d4f31a6b5","description":{"content":"<p>Required. HyperCore master or sub-account address.</p>\n","type":"text/plain"},"type":"any","value":"0x020ca66c30bec2c4fe3861a94e4db4a498a35872","key":"address"}]}},"response":[{"id":"76a3e70e-4d06-4521-9808-a56350b6c8b6","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/hypercore/account/:address/trades","host":["https://api.arkm.com"],"path":["hypercore","account",":address","trades"],"query":[{"key":"limit","value":"50","description":"Optional. Max fills to return (default 50, max 200).","disabled":true},{"key":"offset","value":"0","description":"Optional. Pagination offset into the merged fill history. Default: 0.","disabled":true}],"variable":[{"key":"address","value":"0x020ca66c30bec2c4fe3861a94e4db4a498a35872","description":"Required. HyperCore master or sub-account address."}]},"description":"Merged spot and perp fills for a HyperCore address (master + sub-accounts), newest first, paginated via limit/offset."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"addresses\": [\n    \"0x020ca66c30bec2c4fe3861a94e4db4a498a35872\"\n  ],\n  \"hasMore\": true,\n  \"limit\": 50,\n  \"offset\": 0,\n  \"trades\": [\n    {\n      \"address\": \"0x020ca66c30bec2c4fe3861a94e4db4a498a35872\",\n      \"closedPnl\": 0,\n      \"coin\": \"ETH\",\n      \"direction\": \"Open Long\",\n      \"fee\": 9.970859,\n      \"feeToken\": \"USDC\",\n      \"hash\": \"0x0a62f1391c59819b0bdc044022f1670203a2001eb75ca06dae2b9c8bdb5d5b85\",\n      \"kind\": \"perp\",\n      \"price\": 1832.7,\n      \"side\": \"B\",\n      \"size\": 18.1351,\n      \"time\": \"2026-07-17T14:10:59.009Z\"\n    },\n    {\n      \"address\": \"0x020ca66c30bec2c4fe3861a94e4db4a498a35872\",\n      \"closedPnl\": 0,\n      \"coin\": \"ETH\",\n      \"direction\": \"Open Long\",\n      \"fee\": 3.77439,\n      \"feeToken\": \"USDC\",\n      \"hash\": \"0x0a62f1391c59819b0bdc044022f1670203a2001eb75ca06dae2b9c8bdb5d5b85\",\n      \"kind\": \"perp\",\n      \"price\": 1832.7,\n      \"side\": \"B\",\n      \"size\": 6.8649,\n      \"time\": \"2026-07-17T14:10:59.009Z\"\n    },\n    {\n      \"address\": \"0x020ca66c30bec2c4fe3861a94e4db4a498a35872\",\n      \"closedPnl\": 0,\n      \"coin\": \"ETH\",\n      \"direction\": \"Open Long\",\n      \"fee\": 13.753499,\n      \"feeToken\": \"USDC\",\n      \"hash\": \"0x282c56304428027829a6044022f1010206a50015df2b214acbf50183032bdc62\",\n      \"kind\": \"perp\",\n      \"price\": 1833.8,\n      \"side\": \"B\",\n      \"size\": 25,\n      \"time\": \"2026-07-17T14:10:51.906Z\"\n    }\n  ]\n}"}],"_postman_id":"a08023d0-e155-4dc6-a915-9b59da460b1a"},{"name":"Check for HyperCore entity activity","id":"06c3b3b3-ff29-4022-8251-924c9f3baa6e","request":{"method":"GET","header":[],"url":"https://api.arkm.com/hypercore/entity/:entity/active","description":"<p>Whether any address attributed to the entity has HyperCore activity: a spot balance, open perp position, margin, staking, or vault equity.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["hypercore","entity",":entity","active"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"d39e6f8c-4b45-4db6-8d94-95f015763278","description":{"content":"<p>Required. Arkham entity ID.</p>\n","type":"text/plain"},"type":"any","value":"wintermute","key":"entity"}]}},"response":[{"id":"ac25473b-434f-4af2-9e73-c82900b24f79","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/hypercore/entity/:entity/active","host":["https://api.arkm.com"],"path":["hypercore","entity",":entity","active"],"variable":[{"key":"entity","value":"wintermute","description":"Required. Arkham entity ID."}]},"description":"Whether any address attributed to the entity has HyperCore activity: a spot balance, open perp position, margin, staking, or vault equity."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"active\": true,\n  \"entity\": \"wintermute\"\n}"}],"_postman_id":"06c3b3b3-ff29-4022-8251-924c9f3baa6e"},{"name":"Get HyperCore entity perp positions","id":"2949b051-9b5b-42da-b785-4526d80ab562","request":{"method":"GET","header":[],"url":"https://api.arkm.com/hypercore/entity/:entity/perp-positions","description":"<p>Open perpetual positions across every address attributed to the entity, with mark price, unrealized PnL, and per-DEX USDC margin.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["hypercore","entity",":entity","perp-positions"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"7b255834-04d8-4134-935d-ece0abb43397","description":{"content":"<p>Required. Arkham entity ID.</p>\n","type":"text/plain"},"type":"any","value":"wintermute","key":"entity"}]}},"response":[{"id":"f3f43e5b-0245-463b-a91b-e34f9ccf1220","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/hypercore/entity/:entity/perp-positions","host":["https://api.arkm.com"],"path":["hypercore","entity",":entity","perp-positions"],"variable":[{"key":"entity","value":"wintermute","description":"Required. Arkham entity ID."}]},"description":"Open perpetual positions across every address attributed to the entity, with mark price, unrealized PnL, and per-DEX USDC margin."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"accountUsdValue\": 60422375.07808398,\n  \"addresses\": [\n    \"0x0000006daea1723962647b7e189d311d757fb793\",\n    \"0x0000f079e68bbcc79ab9600ace786b0a4db1c83c\",\n    \"0x03ae1a796dfe0400439211133d065bda774b9d3e\"\n  ],\n  \"dexBalances\": [\n    {\n      \"dex\": \"xyz\",\n      \"usdcBalance\": 9719026.928198999\n    },\n    {\n      \"dex\": \"\",\n      \"usdcBalance\": 161683016.732425\n    },\n    {\n      \"dex\": \"cash\",\n      \"usdcBalance\": 0.004359\n    }\n  ],\n  \"positions\": [\n    {\n      \"address\": \"0xecb63caa47c7c4e77f60f1ce858cf28dc2b82b00\",\n      \"coin\": \"PUMP\",\n      \"direction\": \"short\",\n      \"entryPx\": 0.0015532833786410095,\n      \"leverageType\": \"cross\",\n      \"leverageValue\": 3,\n      \"markPx\": 0.001625,\n      \"maxLeverage\": 10,\n      \"positionValue\": 4264428.89925,\n      \"szi\": -2624263938,\n      \"underlyingPricingId\": \"pump-fun\",\n      \"underlyingSymbol\": \"PUMP\",\n      \"unrealizedPnl\": -188203.34318759906\n    },\n    {\n      \"address\": \"0xecb63caa47c7c4e77f60f1ce858cf28dc2b82b00\",\n      \"coin\": \"kPEPE\",\n      \"direction\": \"short\",\n      \"entryPx\": 0.0026949657593151586,\n      \"leverageType\": \"cross\",\n      \"leverageValue\": 10,\n      \"markPx\": 0.002675,\n      \"maxLeverage\": 10,\n      \"positionValue\": 1309223.594175,\n      \"szi\": -489429381,\n      \"underlyingPricingId\": \"pepe\",\n      \"underlyingSymbol\": \"PEPE\",\n      \"unrealizedPnl\": 9771.829222813132\n    },\n    {\n      \"address\": \"0xecb63caa47c7c4e77f60f1ce858cf28dc2b82b00\",\n      \"coin\": \"kBONK\",\n      \"direction\": \"short\",\n      \"entryPx\": 0.003497,\n      \"leverageType\": \"cross\",\n      \"leverageValue\": 10,\n      \"markPx\": 0.003168,\n      \"maxLeverage\": 10,\n      \"positionValue\": 171282.754368,\n      \"szi\": -54066526,\n      \"underlyingPricingId\": \"bonk\",\n      \"underlyingSymbol\": \"BONK\",\n      \"unrealizedPnl\": 17787.887054000017\n    }\n  ],\n  \"unrealizedPnl\": 1653719.941092011,\n  \"usdcBalance\": 171402043.664983\n}"}],"_postman_id":"2949b051-9b5b-42da-b785-4526d80ab562"},{"name":"Get HyperCore entity account value / PnL history","id":"cdafadf3-a28c-44b0-96e3-418f0c9fd833","request":{"method":"GET","header":[],"url":"https://api.arkm.com/hypercore/entity/:entity/portfolio-history","description":"<p>Combined account-value and PnL time series per timeframe (day, week, month, allTime) across an entity's HyperCore addresses, at daily resolution.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["hypercore","entity",":entity","portfolio-history"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"3575b6cd-8000-411c-bafb-e95bacf35c9a","description":{"content":"<p>Required. Arkham entity ID.</p>\n","type":"text/plain"},"type":"any","value":"wintermute","key":"entity"}]}},"response":[{"id":"b2c6c18a-418f-4c78-835e-56a462fc4fc9","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/hypercore/entity/:entity/portfolio-history","host":["https://api.arkm.com"],"path":["hypercore","entity",":entity","portfolio-history"],"variable":[{"key":"entity","value":"wintermute","description":"Required. Arkham entity ID."}]},"description":"Combined account-value and PnL time series per timeframe (day, week, month, allTime) across an entity's HyperCore addresses, at daily resolution."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"entity\": \"wintermute\",\n  \"periods\": [\n    {\n      \"accountValue\": [\n        {\n          \"time\": 1784246344057,\n          \"value\": 95158621.32031299\n        },\n        {\n          \"time\": 1784294531578,\n          \"value\": 98562252.84599899\n        }\n      ],\n      \"period\": \"day\",\n      \"pnl\": [\n        {\n          \"time\": 1784224706077,\n          \"value\": 846167.4401189685\n        },\n        {\n          \"time\": 1784294531578,\n          \"value\": 2471029.4675139785\n        }\n      ]\n    },\n    {\n      \"accountValue\": [\n        {\n          \"time\": 1783727996396,\n          \"value\": 91760066.196543\n        },\n        {\n          \"time\": 1783814323032,\n          \"value\": 96805461.583287\n        },\n        {\n          \"time\": 1783900560020,\n          \"value\": 101532531.30774198\n        }\n      ],\n      \"period\": \"week\",\n      \"pnl\": [\n        {\n          \"time\": 1783726080034,\n          \"value\": -2659042.1070310175\n        },\n        {\n          \"time\": 1783810080061,\n          \"value\": -2659041.3849770427\n        },\n        {\n          \"time\": 1783897680023,\n          \"value\": -2659040.7379760146\n        }\n      ]\n    }\n  ]\n}"}],"_postman_id":"cdafadf3-a28c-44b0-96e3-418f0c9fd833"},{"name":"Get HyperCore entity spot balances","id":"2e9d3e79-9777-4738-b9ec-0ad66cffb969","request":{"method":"GET","header":[],"url":"https://api.arkm.com/hypercore/entity/:entity/spot-balances","description":"<p>Spot token balances across every address attributed to the entity, each valued in USD at the spot mid price.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["hypercore","entity",":entity","spot-balances"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"d9b1046f-821b-4f40-b04e-e5aff0a0d2e3","description":{"content":"<p>Required. Arkham entity ID.</p>\n","type":"text/plain"},"type":"any","value":"wintermute","key":"entity"}]}},"response":[{"id":"3f56b545-36ee-4178-85d5-022583bfd681","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/hypercore/entity/:entity/spot-balances","host":["https://api.arkm.com"],"path":["hypercore","entity",":entity","spot-balances"],"variable":[{"key":"entity","value":"wintermute","description":"Required. Arkham entity ID."}]},"description":"Spot token balances across every address attributed to the entity, each valued in USD at the spot mid price."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"addresses\": [\n    \"0x0000006daea1723962647b7e189d311d757fb793\",\n    \"0x0000f079e68bbcc79ab9600ace786b0a4db1c83c\",\n    \"0x03ae1a796dfe0400439211133d065bda774b9d3e\"\n  ],\n  \"balances\": [\n    {\n      \"address\": \"0x9f2a049145af1ee33ee1de8adc0e62041761cc5d\",\n      \"coin\": \"MAX\",\n      \"hold\": 0,\n      \"token\": 734,\n      \"total\": 9995.425307,\n      \"usdPrice\": 4e-7,\n      \"usdValue\": 0.0039981701228\n    },\n    {\n      \"address\": \"0xecb63caa47c7c4e77f60f1ce858cf28dc2b82b00\",\n      \"coin\": \"USDC\",\n      \"hold\": 6289812.51771749,\n      \"token\": 0,\n      \"total\": 9991392.00856484,\n      \"underlyingPricingId\": \"usd-coin\",\n      \"usdPrice\": 1,\n      \"usdValue\": 3701579.490847349\n    },\n    {\n      \"address\": \"0xecb63caa47c7c4e77f60f1ce858cf28dc2b82b00\",\n      \"coin\": \"UBTC\",\n      \"entryPx\": 64115.25251628088,\n      \"hold\": 36.39076,\n      \"token\": 197,\n      \"total\": 97.9853715109,\n      \"underlyingPricingId\": \"unit-bitcoin\",\n      \"underlyingSymbol\": \"UBTC\",\n      \"unrealizedPnl\": -141515.61936333403,\n      \"usdPrice\": 62671,\n      \"usdValue\": 6140841.217959614\n    }\n  ],\n  \"totalUsdValue\": 16750028.265744798\n}"}],"_postman_id":"2e9d3e79-9777-4738-b9ec-0ad66cffb969"},{"name":"Get HyperCore entity value summary","id":"fd7c5524-9ef5-4c5f-ba0c-ad42db278aeb","request":{"method":"GET","header":[],"url":"https://api.arkm.com/hypercore/entity/:entity/summary","description":"<p>Total HyperCore value (spot USD + perp equity + staked HYPE) aggregated across every address attributed to the entity, sub-accounts included.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["hypercore","entity",":entity","summary"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"277e52ac-bf84-48ee-833f-ca94bcf8b6ee","description":{"content":"<p>Required. Arkham entity ID.</p>\n","type":"text/plain"},"type":"any","value":"wintermute","key":"entity"}]}},"response":[{"id":"4ad55725-11eb-4d17-ab79-d60c48c1296f","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/hypercore/entity/:entity/summary","host":["https://api.arkm.com"],"path":["hypercore","entity",":entity","summary"],"variable":[{"key":"entity","value":"wintermute","description":"Required. Arkham entity ID."}]},"description":"Total HyperCore value (spot USD + perp equity + staked HYPE) aggregated across every address attributed to the entity, sub-accounts included."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"addressCount\": 71,\n  \"entity\": \"wintermute\",\n  \"perpPositionCount\": 123,\n  \"perpUnrealizedPnl\": 1653719.941092011,\n  \"perpUsdValue\": 60422375.07808398,\n  \"perpUsdcBalance\": 171402043.664983,\n  \"pricingAvailable\": true,\n  \"spotBalanceCount\": 45,\n  \"spotUsdValue\": 16750028.265744798,\n  \"stakedUsdValue\": 15341482.640184918,\n  \"subAccountCount\": 22,\n  \"totalUsdValue\": 92513885.98401369\n}"}],"_postman_id":"fd7c5524-9ef5-4c5f-ba0c-ad42db278aeb"},{"name":"List HyperCore markets","id":"900062e7-072d-4a3a-a55b-b8bd9f8e9205","request":{"method":"GET","header":[],"url":"https://api.arkm.com/hypercore/markets","description":"<p>Every token that has a HyperCore spot or perpetual market. Returns each token's pricing id, symbol, and name.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["hypercore","markets"],"host":["https://api.arkm.com"],"query":[],"variable":[]}},"response":[{"id":"c1b5f920-08de-42db-b508-4f2bfc8a6e68","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.arkm.com/hypercore/markets","description":"Every token that has a HyperCore spot or perpetual market. Returns each token's pricing id, symbol, and name."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"markets\": [\n    {\n      \"name\": \"Bitcoin\",\n      \"pricingId\": \"bitcoin\",\n      \"symbol\": \"BTC\"\n    },\n    {\n      \"name\": \"Ethereum\",\n      \"pricingId\": \"ethereum\",\n      \"symbol\": \"ETH\"\n    },\n    {\n      \"name\": \"Hyperliquid\",\n      \"pricingId\": \"hyperliquid\",\n      \"symbol\": \"HYPE\"\n    }\n  ]\n}"}],"_postman_id":"900062e7-072d-4a3a-a55b-b8bd9f8e9205"},{"name":"Get top HyperCore perp positions for a token","id":"93676fb2-e7a9-4ca5-811c-c63563382f8c","request":{"method":"GET","header":[],"url":"https://api.arkm.com/hypercore/token/:pricingId/positions","description":"<p>Returns the largest open HyperCore perp positions on the token's canonical market, optionally netted per entity.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["hypercore","token",":pricingId","positions"],"host":["https://api.arkm.com"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Filter to 'long' or 'short' positions; omit for both.</p>\n","type":"text/plain"},"key":"side","value":"long"},{"disabled":true,"description":{"content":"<p>Optional. If 'true', nets positions per attributed entity.</p>\n","type":"text/plain"},"key":"groupByEntity","value":"true"},{"disabled":true,"description":{"content":"<p>Optional. Sort column: size, value, pnl, funding (default size).</p>\n","type":"text/plain"},"key":"sort","value":"size"},{"disabled":true,"description":{"content":"<p>Optional. If 'true', sorts ascending.</p>\n","type":"text/plain"},"key":"ascending","value":"true"},{"disabled":true,"description":{"content":"<p>Optional. Rows per page (default 50, max 100).</p>\n","type":"text/plain"},"key":"limit","value":"50"},{"disabled":true,"description":{"content":"<p>Optional. Pagination offset (offset+limit capped at 1000). Default: 0.</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[{"id":"cf8b294d-b02a-498c-ab0b-d7de6c146b70","description":{"content":"<p>Required. CoinGecko pricing id of the token.</p>\n","type":"text/plain"},"type":"any","value":"bitcoin","key":"pricingId"}]}},"response":[{"id":"b2bd11f6-a9b6-4800-8315-10d94c6f18e0","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/hypercore/token/:pricingId/positions","host":["https://api.arkm.com"],"path":["hypercore","token",":pricingId","positions"],"query":[{"key":"side","value":"long","description":"Optional. Filter to 'long' or 'short' positions; omit for both.","disabled":true},{"key":"groupByEntity","value":"true","description":"Optional. If 'true', nets positions per attributed entity.","disabled":true},{"key":"sort","value":"size","description":"Optional. Sort column: size, value, pnl, funding (default size).","disabled":true},{"key":"ascending","value":"true","description":"Optional. If 'true', sorts ascending.","disabled":true},{"key":"limit","value":"50","description":"Optional. Rows per page (default 50, max 100).","disabled":true},{"key":"offset","value":"0","description":"Optional. Pagination offset (offset+limit capped at 1000). Default: 0.","disabled":true}],"variable":[{"key":"pricingId","value":"bitcoin","description":"Required. CoinGecko pricing id of the token."}]},"description":"Returns the largest open HyperCore perp positions on the token's canonical market, optionally netted per entity."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"hasPerp\": true,\n  \"positions\": [\n    {\n      \"address\": {\n        \"address\": \"0x92ea19eceb7a8de0f50978a1583a5d8b018050e9\",\n        \"arkhamLabel\": {\n          \"address\": \"0x92ea19ECeB7a8dE0f50978A1583A5D8b018050e9\",\n          \"chainType\": \"evm\",\n          \"name\": \"\\\"GarretBullish\\\" on Markets.xyz\"\n        },\n        \"chain\": \"hyperevm\",\n        \"contract\": false,\n        \"service\": false\n      },\n      \"addressCount\": 1,\n      \"coin\": \"BTC\",\n      \"cumFundingSinceOpen\": 862173.863344,\n      \"direction\": \"long\",\n      \"entryPx\": 76117.3,\n      \"leverageType\": \"cross\",\n      \"leverageValue\": 5,\n      \"markPx\": 62700,\n      \"maxLeverage\": 40,\n      \"positionValue\": 79524596.34899999,\n      \"szi\": 1268.33487,\n      \"unrealizedPnl\": -17017629.451251004\n    },\n    {\n      \"address\": {\n        \"address\": \"0x66f889094739dbb7d20aa60f645acd88feba75a9\",\n        \"arkhamLabel\": {\n          \"address\": \"0x66f889094739dbb7d20AA60F645AcD88FEbA75a9\",\n          \"chainType\": \"evm\",\n          \"name\": \"\\\"DoshiAtoll\\\" on Markets.xyz\"\n        },\n        \"chain\": \"hyperevm\",\n        \"contract\": false,\n        \"service\": false\n      },\n      \"addressCount\": 1,\n      \"coin\": \"BTC\",\n      \"cumFundingSinceOpen\": 8757.225544,\n      \"direction\": \"long\",\n      \"entryPx\": 63451.3,\n      \"leverageType\": \"cross\",\n      \"leverageValue\": 30,\n      \"markPx\": 62700,\n      \"maxLeverage\": 40,\n      \"positionValue\": 62702811.468,\n      \"szi\": 1000.04484,\n      \"unrealizedPnl\": -751333.6882920029\n    },\n    {\n      \"address\": {\n        \"address\": \"0x15a4f009bb324a3fb9e36137136b201e3fe0dfdb\",\n        \"arkhamLabel\": {\n          \"address\": \"0x15a4F009BB324A3fb9E36137136B201E3Fe0DFDb\",\n          \"chainType\": \"evm\",\n          \"name\": \"\\\"baxter-island-papaverpoppy2999\\\" on Markets.xyz\"\n        },\n        \"chain\": \"hyperevm\",\n        \"contract\": false,\n        \"service\": false\n      },\n      \"addressCount\": 1,\n      \"coin\": \"BTC\",\n      \"cumFundingSinceOpen\": 210709.639252,\n      \"direction\": \"long\",\n      \"entryPx\": 62353.6,\n      \"leverageType\": \"cross\",\n      \"leverageValue\": 40,\n      \"markPx\": 62700,\n      \"maxLeverage\": 40,\n      \"positionValue\": 62700000,\n      \"szi\": 1000,\n      \"unrealizedPnl\": 346400.00000000146\n    }\n  ],\n  \"total\": 29706\n}"}],"_postman_id":"93676fb2-e7a9-4ca5-811c-c63563382f8c"},{"name":"Search HyperCore trades","id":"9a0eb44f-9424-4d29-9130-4f95d28c956a","request":{"method":"GET","header":[],"url":"https://api.arkm.com/hypercore/trades?base=wintermute&timeLast=24h&limit=50","description":"<p>Filtered, sorted feed of HyperCore perp and spot fills merged under one limit, each enriched with the trader's entity and labels.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["hypercore","trades"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Optional. Filter by trader: a comma-separated list of addresses, entity ids, 'tag:' and 'prefix:' terms. Prefix any term with '!' to exclude it. 'type:' and 'deposit:' are not supported on trades.</p>\n","type":"text/plain"},"key":"base","value":"wintermute"},{"disabled":true,"description":{"content":"<p>Optional. Filter to these raw coin identifiers.</p>\n","type":"text/plain"},"key":"coins","value":"BTC"},{"disabled":true,"description":{"content":"<p>Optional. Filter by token: CoinGecko pricing ids, expanded to every coin that resolves to them.</p>\n","type":"text/plain"},"key":"pricingIds","value":"bitcoin"},{"disabled":true,"description":{"content":"<p>Optional. Filter by side: 'buy' or 'sell'.</p>\n","type":"text/plain"},"key":"side","value":"buy"},{"disabled":true,"description":{"content":"<p>Optional. Filter perp fills by direction label, for example 'Open Long'.</p>\n","type":"text/plain"},"key":"directions","value":"Open Long"},{"disabled":true,"description":{"content":"<p>Optional. Filter by liquidation involvement: true returns only fills that are part of a liquidation (either the forced close or the counterparty fill), false excludes them.</p>\n","type":"text/plain"},"key":"liquidated","value":"true"},{"disabled":true,"description":{"content":"<p>Optional. Limit to 'perp' or 'spot'; empty returns both.</p>\n","type":"text/plain"},"key":"product","value":"perp"},{"disabled":true,"description":{"content":"<p>Optional. Filter by whether the fill crossed the book: true for taker fills, false for maker fills.</p>\n","type":"text/plain"},"key":"crossed","value":"true"},{"disabled":true,"description":{"content":"<p>Optional. Filter by trader address tags.</p>\n","type":"text/plain"},"key":"tags","value":"whale"},{"disabled":true,"description":{"content":"<p>Optional. Minimum notional value (price*size).</p>\n","type":"text/plain"},"key":"valueGte","value":"1000"},{"disabled":true,"description":{"content":"<p>Optional. Maximum notional value.</p>\n","type":"text/plain"},"key":"valueLte","value":"1000000"},{"disabled":true,"description":{"content":"<p>Optional. Minimum fill size.</p>\n","type":"text/plain"},"key":"sizeGte","value":"0.001"},{"disabled":true,"description":{"content":"<p>Optional. Maximum fill size.</p>\n","type":"text/plain"},"key":"sizeLte","value":"1000"},{"disabled":true,"description":{"content":"<p>Optional. Minimum fill price.</p>\n","type":"text/plain"},"key":"priceGte","value":"1"},{"disabled":true,"description":{"content":"<p>Optional. Maximum fill price.</p>\n","type":"text/plain"},"key":"priceLte","value":"1000000"},{"disabled":true,"description":{"content":"<p>Optional. Only fills at or after this time.</p>\n","type":"text/plain"},"key":"timeGte","value":"2024-01-01T00:00:00Z"},{"disabled":true,"description":{"content":"<p>Optional. Only fills at or before this time.</p>\n","type":"text/plain"},"key":"timeLte","value":"2024-01-01T00:00:00Z"},{"description":{"content":"<p>Optional. Relative window ending now, e.g. '24h'. Units are case-sensitive: s (seconds), m (minutes), h (hours), d (days), w (weeks), M (months, 30 days), y (years) — so 1m is one minute and 1M is one month. Mutually exclusive with timeGte/timeLte.</p>\n","type":"text/plain"},"key":"timeLast","value":"24h"},{"disabled":true,"description":{"content":"<p>Optional. Sort by 'time', 'value', 'size', or 'price' (default 'time').</p>\n","type":"text/plain"},"key":"sortKey","value":"time"},{"disabled":true,"description":{"content":"<p>Optional. 'asc' or 'desc' (default 'desc').</p>\n","type":"text/plain"},"key":"sortDir","value":"desc"},{"description":{"content":"<p>Optional. Max trades to return (default 50, max 200).</p>\n","type":"text/plain"},"key":"limit","value":"50"},{"disabled":true,"description":{"content":"<p>Optional. Pagination offset (offset+limit must be &lt;= 10000). Default: 0.</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"017e47c4-3676-4d66-87c0-de341b9eee61","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/hypercore/trades?base=wintermute&timeLast=24h&limit=50","host":["https://api.arkm.com"],"path":["hypercore","trades"],"query":[{"key":"base","value":"wintermute","description":"Optional. Filter by trader: a comma-separated list of addresses, entity ids, 'tag:<id>' and 'prefix:<hex>' terms. Prefix any term with '!' to exclude it. 'type:' and 'deposit:' are not supported on trades."},{"key":"coins","value":"BTC","description":"Optional. Filter to these raw coin identifiers.","disabled":true},{"key":"pricingIds","value":"bitcoin","description":"Optional. Filter by token: CoinGecko pricing ids, expanded to every coin that resolves to them.","disabled":true},{"key":"side","value":"buy","description":"Optional. Filter by side: 'buy' or 'sell'.","disabled":true},{"key":"directions","value":"Open Long","description":"Optional. Filter perp fills by direction label, for example 'Open Long'.","disabled":true},{"key":"liquidated","value":"true","description":"Optional. Filter by liquidation involvement: true returns only fills that are part of a liquidation (either the forced close or the counterparty fill), false excludes them.","disabled":true},{"key":"product","value":"perp","description":"Optional. Limit to 'perp' or 'spot'; empty returns both.","disabled":true},{"key":"crossed","value":"true","description":"Optional. Filter by whether the fill crossed the book: true for taker fills, false for maker fills.","disabled":true},{"key":"tags","value":"whale","description":"Optional. Filter by trader address tags.","disabled":true},{"key":"valueGte","value":"1000","description":"Optional. Minimum notional value (price*size).","disabled":true},{"key":"valueLte","value":"1000000","description":"Optional. Maximum notional value.","disabled":true},{"key":"sizeGte","value":"0.001","description":"Optional. Minimum fill size.","disabled":true},{"key":"sizeLte","value":"1000","description":"Optional. Maximum fill size.","disabled":true},{"key":"priceGte","value":"1","description":"Optional. Minimum fill price.","disabled":true},{"key":"priceLte","value":"1000000","description":"Optional. Maximum fill price.","disabled":true},{"key":"timeGte","value":"2024-01-01T00:00:00Z","description":"Optional. Only fills at or after this time.","disabled":true},{"key":"timeLte","value":"2024-01-01T00:00:00Z","description":"Optional. Only fills at or before this time.","disabled":true},{"key":"timeLast","value":"24h","description":"Optional. Relative window ending now, e.g. '24h'. Units are case-sensitive: s (seconds), m (minutes), h (hours), d (days), w (weeks), M (months, 30 days), y (years) — so 1m is one minute and 1M is one month. Mutually exclusive with timeGte/timeLte."},{"key":"sortKey","value":"time","description":"Optional. Sort by 'time', 'value', 'size', or 'price' (default 'time').","disabled":true},{"key":"sortDir","value":"desc","description":"Optional. 'asc' or 'desc' (default 'desc').","disabled":true},{"key":"limit","value":"50","description":"Optional. Max trades to return (default 50, max 200)."},{"key":"offset","value":"0","description":"Optional. Pagination offset (offset+limit must be <= 10000). Default: 0.","disabled":true}]},"description":"Filtered, sorted feed of HyperCore perp and spot fills merged under one limit, each enriched with the trader's entity and labels."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"count\": 10000,\n  \"hasMore\": true,\n  \"limit\": 50,\n  \"offset\": 0,\n  \"trades\": [\n    {\n      \"blockNumber\": 1079589907,\n      \"closedPnl\": 0,\n      \"coin\": \"XPL\",\n      \"crossed\": true,\n      \"direction\": \"Open Short\",\n      \"eventIndex\": 1,\n      \"hash\": \"0x79a1ce670f9579457b1b0440593c1302029a004caa9898171d6a79b9ce995330\",\n      \"kind\": \"perp\",\n      \"price\": 0.082864,\n      \"side\": \"sell\",\n      \"size\": 1600,\n      \"startPosition\": -20374051,\n      \"time\": \"2026-07-20T12:39:52.215921792Z\",\n      \"trader\": {\n        \"address\": \"0xecb63caa47c7c4e77f60f1ce858cf28dc2b82b00\",\n        \"arkhamEntity\": {\n          \"crunchbase\": \"https://www.crunchbase.com/organization/wintermute-trading\",\n          \"id\": \"wintermute\",\n          \"linkedin\": \"https://www.linkedin.com/company/wintermute-trading\",\n          \"name\": \"Wintermute\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/wintermute_t\",\n          \"type\": \"fund\",\n          \"website\": \"https://www.wintermute.com/\"\n        },\n        \"arkhamLabel\": {\n          \"address\": \"0xECB63caA47c7c4E77F60f1cE858Cf28dC2B82b00\",\n          \"chainType\": \"evm\",\n          \"name\": \"\\\"Wintermute\\\" on Markets.xyz\"\n        },\n        \"chain\": \"hyperevm\",\n        \"contract\": false,\n        \"service\": false\n      },\n      \"underlyingPricingId\": \"plasma\",\n      \"underlyingSymbol\": \"XPL\",\n      \"userAddress\": \"0xecb63caa47c7c4e77f60f1ce858cf28dc2b82b00\",\n      \"value\": 132.58239999999998\n    },\n    {\n      \"blockNumber\": 1079589895,\n      \"closedPnl\": -1.440164,\n      \"coin\": \"xyz:MSTR\",\n      \"crossed\": true,\n      \"direction\": \"Close Short\",\n      \"eventIndex\": 2,\n      \"hash\": \"0x7dcbeface8b60af67f450440593c07020138009283b929c821949affa7b9e4e1\",\n      \"kind\": \"perp\",\n      \"price\": 96.06,\n      \"side\": \"buy\",\n      \"size\": 1.562,\n      \"startPosition\": -3783.087,\n      \"time\": \"2026-07-20T12:39:51.408383922Z\",\n      \"trader\": {\n        \"address\": \"0xecb63caa47c7c4e77f60f1ce858cf28dc2b82b00\",\n        \"arkhamEntity\": {\n          \"crunchbase\": \"https://www.crunchbase.com/organization/wintermute-trading\",\n          \"id\": \"wintermute\",\n          \"linkedin\": \"https://www.linkedin.com/company/wintermute-trading\",\n          \"name\": \"Wintermute\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/wintermute_t\",\n          \"type\": \"fund\",\n          \"website\": \"https://www.wintermute.com/\"\n        },\n        \"arkhamLabel\": {\n          \"address\": \"0xECB63caA47c7c4E77F60f1cE858Cf28dC2B82b00\",\n          \"chainType\": \"evm\",\n          \"name\": \"\\\"Wintermute\\\" on Markets.xyz\"\n        },\n        \"chain\": \"hyperevm\",\n        \"contract\": false,\n        \"service\": false\n      },\n      \"underlyingPricingId\": \"microstrategy-xstock\",\n      \"underlyingSymbol\": \"MSTRX\",\n      \"userAddress\": \"0xecb63caa47c7c4e77f60f1ce858cf28dc2b82b00\",\n      \"value\": 150.04572000000002\n    },\n    {\n      \"blockNumber\": 1079589836,\n      \"coin\": \"@107\",\n      \"crossed\": false,\n      \"eventIndex\": 5,\n      \"hash\": \"0x76a5f729344f55aa781f0440593bcc0201c0000ecf42747c1a6ea27bf3432f95\",\n      \"kind\": \"spot\",\n      \"price\": 61.115,\n      \"side\": \"sell\",\n      \"size\": 32.73,\n      \"time\": \"2026-07-20T12:39:47.45744244Z\",\n      \"trader\": {\n        \"address\": \"0xecb63caa47c7c4e77f60f1ce858cf28dc2b82b00\",\n        \"arkhamEntity\": {\n          \"crunchbase\": \"https://www.crunchbase.com/organization/wintermute-trading\",\n          \"id\": \"wintermute\",\n          \"linkedin\": \"https://www.linkedin.com/company/wintermute-trading\",\n          \"name\": \"Wintermute\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/wintermute_t\",\n          \"type\": \"fund\",\n          \"website\": \"https://www.wintermute.com/\"\n        },\n        \"arkhamLabel\": {\n          \"address\": \"0xECB63caA47c7c4E77F60f1cE858Cf28dC2B82b00\",\n          \"chainType\": \"evm\",\n          \"name\": \"\\\"Wintermute\\\" on Markets.xyz\"\n        },\n        \"chain\": \"hyperevm\",\n        \"contract\": false,\n        \"service\": false\n      },\n      \"underlyingPricingId\": \"hyperliquid\",\n      \"underlyingSymbol\": \"HYPE\",\n      \"userAddress\": \"0xecb63caa47c7c4e77f60f1ce858cf28dc2b82b00\",\n      \"value\": 2000.2939499999998\n    }\n  ]\n}"}],"_postman_id":"9a0eb44f-9424-4d29-9130-4f95d28c956a"},{"name":"Aggregate HyperCore trades","id":"4f1aee3c-135c-4aae-be6d-517c234c8f48","request":{"method":"GET","header":[],"url":"https://api.arkm.com/hypercore/trades/aggregate","description":"<p>The trades feed rolled up per market into fixed time buckets: fill counts, buy/sell sizes and notional, size-weighted average price, net position change, and realized PnL per bucket. Accepts the same filters as the feed; rows come newest bucket first, paginated via the response's 'next' cursor.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["hypercore","trades","aggregate"],"host":["https://api.arkm.com"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Filter by trader: a comma-separated list of addresses, entity ids, 'tag:' and 'prefix:' terms. Prefix any term with '!' to exclude it. 'type:' and 'deposit:' are not supported on trades.</p>\n","type":"text/plain"},"key":"base","value":"wintermute"},{"disabled":true,"description":{"content":"<p>Optional. Filter to these raw coin identifiers.</p>\n","type":"text/plain"},"key":"coins","value":"BTC"},{"disabled":true,"description":{"content":"<p>Optional. Filter by token: CoinGecko pricing ids, expanded to every coin that resolves to them.</p>\n","type":"text/plain"},"key":"pricingIds","value":"bitcoin"},{"disabled":true,"description":{"content":"<p>Optional. Only aggregate one side: 'buy' or 'sell'.</p>\n","type":"text/plain"},"key":"side","value":"buy"},{"disabled":true,"description":{"content":"<p>Optional. Only aggregate perp fills with these direction labels, for example 'Open Long'.</p>\n","type":"text/plain"},"key":"directions","value":"Open Long"},{"disabled":true,"description":{"content":"<p>Optional. Limit to 'perp' or 'spot'; empty aggregates both.</p>\n","type":"text/plain"},"key":"product","value":"perp"},{"disabled":true,"description":{"content":"<p>Optional. Filter by liquidation involvement: true aggregates only fills that are part of a liquidation (either the forced close or the counterparty fill), false excludes them.</p>\n","type":"text/plain"},"key":"liquidated","value":"true"},{"disabled":true,"description":{"content":"<p>Optional. Only aggregate fills by whether they crossed the book: true for taker fills, false for maker fills.</p>\n","type":"text/plain"},"key":"crossed","value":"true"},{"disabled":true,"description":{"content":"<p>Optional. Filter by trader address tags.</p>\n","type":"text/plain"},"key":"tags","value":"whale"},{"disabled":true,"description":{"content":"<p>Optional. Only aggregate fills with at least this notional value (price*size).</p>\n","type":"text/plain"},"key":"valueGte","value":"1000"},{"disabled":true,"description":{"content":"<p>Optional. Only aggregate fills with at most this notional value.</p>\n","type":"text/plain"},"key":"valueLte","value":"1000000"},{"disabled":true,"description":{"content":"<p>Optional. Only aggregate fills of at least this size.</p>\n","type":"text/plain"},"key":"sizeGte","value":"0.001"},{"disabled":true,"description":{"content":"<p>Optional. Only aggregate fills of at most this size.</p>\n","type":"text/plain"},"key":"sizeLte","value":"1000"},{"disabled":true,"description":{"content":"<p>Optional. Only aggregate fills at or above this price.</p>\n","type":"text/plain"},"key":"priceGte","value":"1"},{"disabled":true,"description":{"content":"<p>Optional. Only aggregate fills at or below this price.</p>\n","type":"text/plain"},"key":"priceLte","value":"1000000"},{"disabled":true,"description":{"content":"<p>Optional. Only aggregate fills at or after this time.</p>\n","type":"text/plain"},"key":"timeGte","value":"2024-01-01T00:00:00Z"},{"disabled":true,"description":{"content":"<p>Optional. Only aggregate fills at or before this time.</p>\n","type":"text/plain"},"key":"timeLte","value":"2024-01-01T00:00:00Z"},{"disabled":true,"description":{"content":"<p>Optional. Relative window ending now, e.g. '24h'. Units are case-sensitive: s (seconds), m (minutes), h (hours), d (days), w (weeks), M (months, 30 days), y (years) — so 1m is one minute and 1M is one month. Mutually exclusive with timeGte/timeLte.</p>\n","type":"text/plain"},"key":"timeLast","value":"24h"},{"disabled":true,"description":{"content":"<p>Optional. Bucket width: one of 1m, 5m, 10m, 15m, 30m, 1h, 2h, 4h, 6h, 12h, 1d (default 1h).</p>\n","type":"text/plain"},"key":"interval","value":"1h"},{"disabled":true,"description":{"content":"<p>Optional. Max rows to return (default 100, max 500).</p>\n","type":"text/plain"},"key":"limit","value":"100"},{"disabled":true,"description":{"content":"<p>Optional. Cursor from a previous response's 'next' field, to fetch the following page.</p>\n","type":"text/plain"},"key":"next","value":"abc123"}],"variable":[]}},"response":[{"id":"db7d9ce2-ba9c-4c4f-8aa9-9fb7c015c2c2","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/hypercore/trades/aggregate","host":["https://api.arkm.com"],"path":["hypercore","trades","aggregate"],"query":[{"key":"base","value":"wintermute","description":"Optional. Filter by trader: a comma-separated list of addresses, entity ids, 'tag:<id>' and 'prefix:<hex>' terms. Prefix any term with '!' to exclude it. 'type:' and 'deposit:' are not supported on trades.","disabled":true},{"key":"coins","value":"BTC","description":"Optional. Filter to these raw coin identifiers.","disabled":true},{"key":"pricingIds","value":"bitcoin","description":"Optional. Filter by token: CoinGecko pricing ids, expanded to every coin that resolves to them.","disabled":true},{"key":"side","value":"buy","description":"Optional. Only aggregate one side: 'buy' or 'sell'.","disabled":true},{"key":"directions","value":"Open Long","description":"Optional. Only aggregate perp fills with these direction labels, for example 'Open Long'.","disabled":true},{"key":"product","value":"perp","description":"Optional. Limit to 'perp' or 'spot'; empty aggregates both.","disabled":true},{"key":"liquidated","value":"true","description":"Optional. Filter by liquidation involvement: true aggregates only fills that are part of a liquidation (either the forced close or the counterparty fill), false excludes them.","disabled":true},{"key":"crossed","value":"true","description":"Optional. Only aggregate fills by whether they crossed the book: true for taker fills, false for maker fills.","disabled":true},{"key":"tags","value":"whale","description":"Optional. Filter by trader address tags.","disabled":true},{"key":"valueGte","value":"1000","description":"Optional. Only aggregate fills with at least this notional value (price*size).","disabled":true},{"key":"valueLte","value":"1000000","description":"Optional. Only aggregate fills with at most this notional value.","disabled":true},{"key":"sizeGte","value":"0.001","description":"Optional. Only aggregate fills of at least this size.","disabled":true},{"key":"sizeLte","value":"1000","description":"Optional. Only aggregate fills of at most this size.","disabled":true},{"key":"priceGte","value":"1","description":"Optional. Only aggregate fills at or above this price.","disabled":true},{"key":"priceLte","value":"1000000","description":"Optional. Only aggregate fills at or below this price.","disabled":true},{"key":"timeGte","value":"2024-01-01T00:00:00Z","description":"Optional. Only aggregate fills at or after this time.","disabled":true},{"key":"timeLte","value":"2024-01-01T00:00:00Z","description":"Optional. Only aggregate fills at or before this time.","disabled":true},{"key":"timeLast","value":"24h","description":"Optional. Relative window ending now, e.g. '24h'. Units are case-sensitive: s (seconds), m (minutes), h (hours), d (days), w (weeks), M (months, 30 days), y (years) — so 1m is one minute and 1M is one month. Mutually exclusive with timeGte/timeLte.","disabled":true},{"key":"interval","value":"1h","description":"Optional. Bucket width: one of 1m, 5m, 10m, 15m, 30m, 1h, 2h, 4h, 6h, 12h, 1d (default 1h).","disabled":true},{"key":"limit","value":"100","description":"Optional. Max rows to return (default 100, max 500).","disabled":true},{"key":"next","value":"abc123","description":"Optional. Cursor from a previous response's 'next' field, to fetch the following page.","disabled":true}]},"description":"The trades feed rolled up per market into fixed time buckets: fill counts, buy/sell sizes and notional, size-weighted average price, net position change, and realized PnL per bucket. Accepts the same filters as the feed; rows come newest bucket first, paginated via the response's 'next' cursor."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"hasMore\": true,\n  \"interval\": \"abc123\",\n  \"limit\": 1,\n  \"next\": \"abc123\",\n  \"rows\": [\n    {\n      \"avgPrice\": 1.23,\n      \"buySize\": 1.23,\n      \"buyTrades\": 1,\n      \"closedPnl\": 1.23,\n      \"coin\": \"abc123\",\n      \"kind\": \"abc123\",\n      \"marketLabel\": \"abc123\",\n      \"marketUrl\": \"abc123\",\n      \"netSize\": 1.23,\n      \"netValue\": 1.23,\n      \"sellSize\": 1.23,\n      \"sellTrades\": 1,\n      \"time\": \"2024-01-01T00:00:00Z\",\n      \"trades\": 1,\n      \"underlyingPricingId\": \"abc123\",\n      \"underlyingSymbol\": \"abc123\",\n      \"value\": 1.23\n    }\n  ]\n}"}],"_postman_id":"4f1aee3c-135c-4aae-be6d-517c234c8f48"}],"id":"6b096c5d-ce75-483c-9ff4-470e95b47a63","_postman_id":"6b096c5d-ce75-483c-9ff4-470e95b47a63","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}}},{"name":"intelligence","item":[{"name":"Batch lookup address intelligence","id":"7cc2489a-2f71-4747-9fb9-f49ddcc0ca20","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"addresses\": [\n    \"0x28C6c06298d514Db089934071355E5743bf21d60\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.arkm.com/intelligence/address/batch","description":"<p>Returns intelligence for up to 1000 addresses in a single request. Send a POST body with an <code>addresses</code> array of blockchain addresses. Use <code>chain</code> to look every address up on one network, or <code>chains</code> to narrow which networks are considered when each address's network is detected. Addresses that cannot be parsed are omitted from the response.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["intelligence","address","batch"],"host":["https://api.arkm.com"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Networks to consider when auto-detecting each address's network, as a comma-separated value (e.g. 'ethereum,bsc'). Ignored when 'chain' is set.</p>\n","type":"text/plain"},"key":"chains","value":"ethereum,bsc,polygon"},{"disabled":true,"description":{"content":"<p>Optional. Single blockchain network to filter all addresses to. Takes precedence over 'chains'. If omitted, auto-detects per address.</p>\n","type":"text/plain"},"key":"chain","value":"ethereum"}],"variable":[]}},"response":[{"id":"4b8d6f20-5847-432b-93cd-99e40fc19512","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"addresses\": [\n    \"0x28C6c06298d514Db089934071355E5743bf21d60\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.arkm.com/intelligence/address/batch","host":["https://api.arkm.com"],"path":["intelligence","address","batch"],"query":[{"key":"chains","value":"ethereum,bsc,polygon","description":"Optional. Networks to consider when auto-detecting each address's network, as a comma-separated value (e.g. 'ethereum,bsc'). Ignored when 'chain' is set.","disabled":true},{"key":"chain","value":"ethereum","description":"Optional. Single blockchain network to filter all addresses to. Takes precedence over 'chains'. If omitted, auto-detects per address.","disabled":true}]},"description":"Returns intelligence for up to 1000 addresses in a single request. Send a POST body with an `addresses` array of blockchain addresses. Use `chain` to look every address up on one network, or `chains` to narrow which networks are considered when each address's network is detected. Addresses that cannot be parsed are omitted from the response."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"addresses\": {\n    \"0x28C6c06298d514Db089934071355E5743bf21d60\": {\n      \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n      \"arkhamEntity\": {\n        \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n        \"id\": \"binance\",\n        \"linkedin\": \"https://www.linkedin.com/company/binance\",\n        \"name\": \"Binance\",\n        \"note\": \"\",\n        \"service\": null,\n        \"twitter\": \"https://twitter.com/binance\",\n        \"type\": \"cex\",\n        \"website\": \"https://binance.com\"\n      },\n      \"arkhamLabel\": {\n        \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n        \"chainType\": \"evm\",\n        \"name\": \"Hot Wallet\"\n      },\n      \"chain\": \"ethereum\",\n      \"contract\": false,\n      \"isUserAddress\": false\n    }\n  }\n}"}],"_postman_id":"7cc2489a-2f71-4747-9fb9-f49ddcc0ca20"},{"name":"Batch lookup address intelligence across all chains","id":"3f30740f-427e-48be-b946-84ef6a0eb584","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"addresses\": [\n    \"0x28C6c06298d514Db089934071355E5743bf21d60\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.arkm.com/intelligence/address/batch/all","description":"<p>Returns intelligence for up to 1000 addresses across all supported chains. Send a JSON body with an \"addresses\" array of blockchain addresses.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["intelligence","address","batch","all"],"host":["https://api.arkm.com"],"query":[],"variable":[]}},"response":[{"id":"5368f31b-3a06-429c-80e3-b71aba4488fc","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"addresses\": [\n    \"0x28C6c06298d514Db089934071355E5743bf21d60\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.arkm.com/intelligence/address/batch/all","description":"Returns intelligence for up to 1000 addresses across all supported chains. Send a JSON body with an \"addresses\" array of blockchain addresses."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"addresses\": {\n    \"0x28C6c06298d514Db089934071355E5743bf21d60\": {\n      \"arbitrum_one\": {\n        \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n        \"arkhamEntity\": {\n          \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n          \"id\": \"binance\",\n          \"linkedin\": \"https://www.linkedin.com/company/binance\",\n          \"name\": \"Binance\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/binance\",\n          \"type\": \"cex\",\n          \"website\": \"https://binance.com\"\n        },\n        \"arkhamLabel\": {\n          \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n          \"chainType\": \"evm\",\n          \"name\": \"Hot Wallet\"\n        },\n        \"chain\": \"arbitrum_one\",\n        \"contract\": false,\n        \"isUserAddress\": false\n      },\n      \"avalanche\": {\n        \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n        \"arkhamEntity\": {\n          \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n          \"id\": \"binance\",\n          \"linkedin\": \"https://www.linkedin.com/company/binance\",\n          \"name\": \"Binance\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/binance\",\n          \"type\": \"cex\",\n          \"website\": \"https://binance.com\"\n        },\n        \"arkhamLabel\": {\n          \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n          \"chainType\": \"evm\",\n          \"name\": \"Hot Wallet\"\n        },\n        \"chain\": \"avalanche\",\n        \"contract\": false,\n        \"isUserAddress\": false\n      },\n      \"base\": {\n        \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n        \"arkhamEntity\": {\n          \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n          \"id\": \"binance\",\n          \"linkedin\": \"https://www.linkedin.com/company/binance\",\n          \"name\": \"Binance\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/binance\",\n          \"type\": \"cex\",\n          \"website\": \"https://binance.com\"\n        },\n        \"arkhamLabel\": {\n          \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n          \"chainType\": \"evm\",\n          \"name\": \"Hot Wallet\"\n        },\n        \"chain\": \"base\",\n        \"contract\": false,\n        \"isUserAddress\": false\n      },\n      \"bsc\": {\n        \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n        \"arkhamEntity\": {\n          \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n          \"id\": \"binance\",\n          \"linkedin\": \"https://www.linkedin.com/company/binance\",\n          \"name\": \"Binance\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/binance\",\n          \"type\": \"cex\",\n          \"website\": \"https://binance.com\"\n        },\n        \"arkhamLabel\": {\n          \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n          \"chainType\": \"evm\",\n          \"name\": \"Hot Wallet\"\n        },\n        \"chain\": \"bsc\",\n        \"contract\": false,\n        \"isUserAddress\": false\n      },\n      \"ethereum\": {\n        \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n        \"arkhamEntity\": {\n          \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n          \"id\": \"binance\",\n          \"linkedin\": \"https://www.linkedin.com/company/binance\",\n          \"name\": \"Binance\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/binance\",\n          \"type\": \"cex\",\n          \"website\": \"https://binance.com\"\n        },\n        \"arkhamLabel\": {\n          \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n          \"chainType\": \"evm\",\n          \"name\": \"Hot Wallet\"\n        },\n        \"chain\": \"ethereum\",\n        \"contract\": false,\n        \"isUserAddress\": false\n      },\n      \"flare\": {\n        \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n        \"arkhamEntity\": {\n          \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n          \"id\": \"binance\",\n          \"linkedin\": \"https://www.linkedin.com/company/binance\",\n          \"name\": \"Binance\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/binance\",\n          \"type\": \"cex\",\n          \"website\": \"https://binance.com\"\n        },\n        \"arkhamLabel\": {\n          \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n          \"chainType\": \"evm\",\n          \"name\": \"Hot Wallet\"\n        },\n        \"chain\": \"flare\",\n        \"contract\": false,\n        \"isUserAddress\": false\n      },\n      \"hypercore\": {\n        \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n        \"chain\": \"hypercore\",\n        \"isUserAddress\": false\n      },\n      \"hyperevm\": {\n        \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n        \"arkhamEntity\": {\n          \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n          \"id\": \"binance\",\n          \"linkedin\": \"https://www.linkedin.com/company/binance\",\n          \"name\": \"Binance\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/binance\",\n          \"type\": \"cex\",\n          \"website\": \"https://binance.com\"\n        },\n        \"arkhamLabel\": {\n          \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n          \"chainType\": \"evm\",\n          \"name\": \"Hot Wallet\"\n        },\n        \"chain\": \"hyperevm\",\n        \"contract\": false,\n        \"isUserAddress\": false\n      },\n      \"optimism\": {\n        \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n        \"arkhamEntity\": {\n          \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n          \"id\": \"binance\",\n          \"linkedin\": \"https://www.linkedin.com/company/binance\",\n          \"name\": \"Binance\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/binance\",\n          \"type\": \"cex\",\n          \"website\": \"https://binance.com\"\n        },\n        \"arkhamLabel\": {\n          \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n          \"chainType\": \"evm\",\n          \"name\": \"Hot Wallet\"\n        },\n        \"chain\": \"optimism\",\n        \"contract\": false,\n        \"isUserAddress\": false\n      },\n      \"polygon\": {\n        \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n        \"arkhamEntity\": {\n          \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n          \"id\": \"binance\",\n          \"linkedin\": \"https://www.linkedin.com/company/binance\",\n          \"name\": \"Binance\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/binance\",\n          \"type\": \"cex\",\n          \"website\": \"https://binance.com\"\n        },\n        \"arkhamLabel\": {\n          \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n          \"chainType\": \"evm\",\n          \"name\": \"Hot Wallet\"\n        },\n        \"chain\": \"polygon\",\n        \"contract\": false,\n        \"isUserAddress\": false\n      },\n      \"robinhood\": {\n        \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n        \"arkhamEntity\": {\n          \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n          \"id\": \"binance\",\n          \"linkedin\": \"https://www.linkedin.com/company/binance\",\n          \"name\": \"Binance\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/binance\",\n          \"type\": \"cex\",\n          \"website\": \"https://binance.com\"\n        },\n        \"arkhamLabel\": {\n          \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n          \"chainType\": \"evm\",\n          \"name\": \"Hot Wallet\"\n        },\n        \"chain\": \"robinhood\",\n        \"contract\": false,\n        \"isUserAddress\": false\n      }\n    }\n  }\n}"}],"_postman_id":"3f30740f-427e-48be-b946-84ef6a0eb584"},{"name":"Get intelligence about an address","id":"4025a9b8-edf8-40ac-8709-addfe2a26253","request":{"method":"GET","header":[],"url":"https://api.arkm.com/intelligence/address/:address","description":"<p>Returns intelligence data for the specified address, including entity associations, labels, and contract status.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["intelligence","address",":address"],"host":["https://api.arkm.com"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Blockchain network to query. Only one network is used: if multiple values are provided, only the first applies. If omitted, the best chain is auto-detected across all supported chains.</p>\n","type":"text/plain"},"key":"chain","value":"ethereum,bsc,polygon"}],"variable":[{"id":"01b3f724-aee7-4db0-ac97-15c73c23518b","description":{"content":"<p>Required. The blockchain address to query.</p>\n","type":"text/plain"},"type":"any","value":"0x28C6c06298d514Db089934071355E5743bf21d60","key":"address"}]}},"response":[{"id":"f1682eb6-727b-49be-8cf2-12ec196c7833","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/intelligence/address/:address","host":["https://api.arkm.com"],"path":["intelligence","address",":address"],"query":[{"key":"chain","value":"ethereum,bsc,polygon","description":"Optional. Blockchain network to query. Only one network is used: if multiple values are provided, only the first applies. If omitted, the best chain is auto-detected across all supported chains.","disabled":true}],"variable":[{"key":"address","value":"0x28C6c06298d514Db089934071355E5743bf21d60","description":"Required. The blockchain address to query."}]},"description":"Returns intelligence data for the specified address, including entity associations, labels, and contract status."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n  \"arkhamEntity\": {\n    \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n    \"id\": \"binance\",\n    \"linkedin\": \"https://www.linkedin.com/company/binance\",\n    \"name\": \"Binance\",\n    \"note\": \"\",\n    \"service\": null,\n    \"twitter\": \"https://twitter.com/binance\",\n    \"type\": \"cex\",\n    \"website\": \"https://binance.com\"\n  },\n  \"arkhamLabel\": {\n    \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n    \"chainType\": \"evm\",\n    \"name\": \"Hot Wallet\"\n  },\n  \"chain\": \"ethereum\",\n  \"contract\": false,\n  \"isUserAddress\": false\n}"}],"_postman_id":"4025a9b8-edf8-40ac-8709-addfe2a26253"},{"name":"Get all intelligence about an address across chains","id":"38f1510b-1876-473d-9350-3afb401c3151","request":{"method":"GET","header":[],"url":"https://api.arkm.com/intelligence/address/:address/all","description":"<p>Returns multi-chain intelligence for the provided address, with data for each supported chain where the address format is valid.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["intelligence","address",":address","all"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"b2e020a2-427d-4b93-b6f0-5981c22c6520","description":{"content":"<p>Required. The blockchain address to query across all compatible chains.</p>\n","type":"text/plain"},"type":"any","value":"0x28C6c06298d514Db089934071355E5743bf21d60","key":"address"}]}},"response":[{"id":"3e44ea68-d4c3-449e-8365-d2053f26967f","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/intelligence/address/:address/all","host":["https://api.arkm.com"],"path":["intelligence","address",":address","all"],"variable":[{"key":"address","value":"0x28C6c06298d514Db089934071355E5743bf21d60","description":"Required. The blockchain address to query across all compatible chains."}]},"description":"Returns multi-chain intelligence for the provided address, with data for each supported chain where the address format is valid."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"arbitrum_one\": {\n    \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n    \"arkhamEntity\": {\n      \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n      \"id\": \"binance\",\n      \"linkedin\": \"https://www.linkedin.com/company/binance\",\n      \"name\": \"Binance\",\n      \"note\": \"\",\n      \"service\": null,\n      \"twitter\": \"https://twitter.com/binance\",\n      \"type\": \"cex\",\n      \"website\": \"https://binance.com\"\n    },\n    \"arkhamLabel\": {\n      \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n      \"chainType\": \"evm\",\n      \"name\": \"Hot Wallet\"\n    },\n    \"chain\": \"arbitrum_one\",\n    \"contract\": false,\n    \"isUserAddress\": false\n  },\n  \"avalanche\": {\n    \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n    \"arkhamEntity\": {\n      \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n      \"id\": \"binance\",\n      \"linkedin\": \"https://www.linkedin.com/company/binance\",\n      \"name\": \"Binance\",\n      \"note\": \"\",\n      \"service\": null,\n      \"twitter\": \"https://twitter.com/binance\",\n      \"type\": \"cex\",\n      \"website\": \"https://binance.com\"\n    },\n    \"arkhamLabel\": {\n      \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n      \"chainType\": \"evm\",\n      \"name\": \"Hot Wallet\"\n    },\n    \"chain\": \"avalanche\",\n    \"contract\": false,\n    \"isUserAddress\": false\n  },\n  \"base\": {\n    \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n    \"arkhamEntity\": {\n      \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n      \"id\": \"binance\",\n      \"linkedin\": \"https://www.linkedin.com/company/binance\",\n      \"name\": \"Binance\",\n      \"note\": \"\",\n      \"service\": null,\n      \"twitter\": \"https://twitter.com/binance\",\n      \"type\": \"cex\",\n      \"website\": \"https://binance.com\"\n    },\n    \"arkhamLabel\": {\n      \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n      \"chainType\": \"evm\",\n      \"name\": \"Hot Wallet\"\n    },\n    \"chain\": \"base\",\n    \"contract\": false,\n    \"isUserAddress\": false\n  },\n  \"bsc\": {\n    \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n    \"arkhamEntity\": {\n      \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n      \"id\": \"binance\",\n      \"linkedin\": \"https://www.linkedin.com/company/binance\",\n      \"name\": \"Binance\",\n      \"note\": \"\",\n      \"service\": null,\n      \"twitter\": \"https://twitter.com/binance\",\n      \"type\": \"cex\",\n      \"website\": \"https://binance.com\"\n    },\n    \"arkhamLabel\": {\n      \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n      \"chainType\": \"evm\",\n      \"name\": \"Hot Wallet\"\n    },\n    \"chain\": \"bsc\",\n    \"contract\": false,\n    \"isUserAddress\": false\n  },\n  \"ethereum\": {\n    \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n    \"arkhamEntity\": {\n      \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n      \"id\": \"binance\",\n      \"linkedin\": \"https://www.linkedin.com/company/binance\",\n      \"name\": \"Binance\",\n      \"note\": \"\",\n      \"service\": null,\n      \"twitter\": \"https://twitter.com/binance\",\n      \"type\": \"cex\",\n      \"website\": \"https://binance.com\"\n    },\n    \"arkhamLabel\": {\n      \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n      \"chainType\": \"evm\",\n      \"name\": \"Hot Wallet\"\n    },\n    \"chain\": \"ethereum\",\n    \"contract\": false,\n    \"isUserAddress\": false\n  },\n  \"flare\": {\n    \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n    \"arkhamEntity\": {\n      \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n      \"id\": \"binance\",\n      \"linkedin\": \"https://www.linkedin.com/company/binance\",\n      \"name\": \"Binance\",\n      \"note\": \"\",\n      \"service\": null,\n      \"twitter\": \"https://twitter.com/binance\",\n      \"type\": \"cex\",\n      \"website\": \"https://binance.com\"\n    },\n    \"arkhamLabel\": {\n      \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n      \"chainType\": \"evm\",\n      \"name\": \"Hot Wallet\"\n    },\n    \"chain\": \"flare\",\n    \"contract\": false,\n    \"isUserAddress\": false\n  },\n  \"hypercore\": {\n    \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n    \"chain\": \"hypercore\",\n    \"isUserAddress\": false\n  },\n  \"hyperevm\": {\n    \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n    \"arkhamEntity\": {\n      \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n      \"id\": \"binance\",\n      \"linkedin\": \"https://www.linkedin.com/company/binance\",\n      \"name\": \"Binance\",\n      \"note\": \"\",\n      \"service\": null,\n      \"twitter\": \"https://twitter.com/binance\",\n      \"type\": \"cex\",\n      \"website\": \"https://binance.com\"\n    },\n    \"arkhamLabel\": {\n      \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n      \"chainType\": \"evm\",\n      \"name\": \"Hot Wallet\"\n    },\n    \"chain\": \"hyperevm\",\n    \"contract\": false,\n    \"isUserAddress\": false\n  },\n  \"optimism\": {\n    \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n    \"arkhamEntity\": {\n      \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n      \"id\": \"binance\",\n      \"linkedin\": \"https://www.linkedin.com/company/binance\",\n      \"name\": \"Binance\",\n      \"note\": \"\",\n      \"service\": null,\n      \"twitter\": \"https://twitter.com/binance\",\n      \"type\": \"cex\",\n      \"website\": \"https://binance.com\"\n    },\n    \"arkhamLabel\": {\n      \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n      \"chainType\": \"evm\",\n      \"name\": \"Hot Wallet\"\n    },\n    \"chain\": \"optimism\",\n    \"contract\": false,\n    \"isUserAddress\": false\n  },\n  \"polygon\": {\n    \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n    \"arkhamEntity\": {\n      \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n      \"id\": \"binance\",\n      \"linkedin\": \"https://www.linkedin.com/company/binance\",\n      \"name\": \"Binance\",\n      \"note\": \"\",\n      \"service\": null,\n      \"twitter\": \"https://twitter.com/binance\",\n      \"type\": \"cex\",\n      \"website\": \"https://binance.com\"\n    },\n    \"arkhamLabel\": {\n      \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n      \"chainType\": \"evm\",\n      \"name\": \"Hot Wallet\"\n    },\n    \"chain\": \"polygon\",\n    \"contract\": false,\n    \"isUserAddress\": false\n  },\n  \"robinhood\": {\n    \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n    \"arkhamEntity\": {\n      \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n      \"id\": \"binance\",\n      \"linkedin\": \"https://www.linkedin.com/company/binance\",\n      \"name\": \"Binance\",\n      \"note\": \"\",\n      \"service\": null,\n      \"twitter\": \"https://twitter.com/binance\",\n      \"type\": \"cex\",\n      \"website\": \"https://binance.com\"\n    },\n    \"arkhamLabel\": {\n      \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n      \"chainType\": \"evm\",\n      \"name\": \"Hot Wallet\"\n    },\n    \"chain\": \"robinhood\",\n    \"contract\": false,\n    \"isUserAddress\": false\n  }\n}"}],"_postman_id":"38f1510b-1876-473d-9350-3afb401c3151"},{"name":"Batch lookup enriched address intelligence","id":"569225f8-25ae-4de3-9c30-5c6099436b01","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"addresses\": [\n    \"0x28C6c06298d514Db089934071355E5743bf21d60\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.arkm.com/intelligence/address_enriched/batch","description":"<p>Returns enriched intelligence (with tags, clusters, entity predictions) for up to 1000 addresses in a single request. Send a POST body with an <code>addresses</code> array of blockchain addresses. Use <code>chain</code> to look every address up on one network, or <code>chains</code> to narrow which networks are considered when each address's network is detected. By default all three enrichments are included; use the <code>include</code> parameters to leave one out. Addresses that cannot be parsed are omitted from the response.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["intelligence","address_enriched","batch"],"host":["https://api.arkm.com"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Networks to consider when auto-detecting each address's network, as a comma-separated value (e.g. 'ethereum,bsc'). Ignored when 'chain' is set.</p>\n","type":"text/plain"},"key":"chains","value":"ethereum,bsc,polygon"},{"disabled":true,"description":{"content":"<p>Optional. Single blockchain network to filter all addresses to. Takes precedence over 'chains'. If omitted, auto-detects per address.</p>\n","type":"text/plain"},"key":"chain","value":"ethereum"},{"disabled":true,"description":{"content":"<p>Optional. Whether to include address tags in the response. Defaults to 'true'.</p>\n","type":"text/plain"},"key":"includeTags","value":"true"},{"disabled":true,"description":{"content":"<p>Optional. Whether to include cluster IDs in the response. Defaults to 'true'.</p>\n","type":"text/plain"},"key":"includeClusters","value":"true"},{"disabled":true,"description":{"content":"<p>Optional. Whether to include entity predictions in the response. A predicted entity is returned only for an address that has no known entity. Defaults to 'true'.</p>\n","type":"text/plain"},"key":"includeEntityPredictions","value":"true"}],"variable":[]}},"response":[{"id":"96a1cd79-c4bc-431c-807e-278791a46f92","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"addresses\": [\n    \"0x28C6c06298d514Db089934071355E5743bf21d60\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.arkm.com/intelligence/address_enriched/batch","host":["https://api.arkm.com"],"path":["intelligence","address_enriched","batch"],"query":[{"key":"chains","value":"ethereum,bsc,polygon","description":"Optional. Networks to consider when auto-detecting each address's network, as a comma-separated value (e.g. 'ethereum,bsc'). Ignored when 'chain' is set.","disabled":true},{"key":"chain","value":"ethereum","description":"Optional. Single blockchain network to filter all addresses to. Takes precedence over 'chains'. If omitted, auto-detects per address.","disabled":true},{"key":"includeTags","value":"true","description":"Optional. Whether to include address tags in the response. Defaults to 'true'.","disabled":true},{"key":"includeClusters","value":"true","description":"Optional. Whether to include cluster IDs in the response. Defaults to 'true'.","disabled":true},{"key":"includeEntityPredictions","value":"true","description":"Optional. Whether to include entity predictions in the response. A predicted entity is returned only for an address that has no known entity. Defaults to 'true'.","disabled":true}]},"description":"Returns enriched intelligence (with tags, clusters, entity predictions) for up to 1000 addresses in a single request. Send a POST body with an `addresses` array of blockchain addresses. Use `chain` to look every address up on one network, or `chains` to narrow which networks are considered when each address's network is detected. By default all three enrichments are included; use the `include` parameters to leave one out. Addresses that cannot be parsed are omitted from the response."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"addresses\": {\n    \"0x28C6c06298d514Db089934071355E5743bf21d60\": {\n      \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n      \"arkhamEntity\": {\n        \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n        \"id\": \"binance\",\n        \"linkedin\": \"https://www.linkedin.com/company/binance\",\n        \"name\": \"Binance\",\n        \"note\": \"\",\n        \"service\": null,\n        \"twitter\": \"https://twitter.com/binance\",\n        \"type\": \"cex\",\n        \"website\": \"https://binance.com\"\n      },\n      \"arkhamLabel\": {\n        \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n        \"chainType\": \"evm\",\n        \"name\": \"Hot Wallet\"\n      },\n      \"chain\": \"ethereum\",\n      \"contract\": false,\n      \"isUserAddress\": false,\n      \"populatedTags\": [\n        {\n          \"chain\": \"ethereum\",\n          \"disablePage\": false,\n          \"excludeEntities\": false,\n          \"id\": \"proof-of-reserves\",\n          \"label\": \"Binance Proof of Reserves\",\n          \"rank\": 20,\n          \"tagParams\": \"Binance\"\n        }\n      ]\n    }\n  }\n}"}],"_postman_id":"569225f8-25ae-4de3-9c30-5c6099436b01"},{"name":"Batch lookup enriched address intelligence across all chains","id":"946f888e-d01f-4b1f-8f28-76392f9a7807","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"addresses\": [\n    \"0x28C6c06298d514Db089934071355E5743bf21d60\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.arkm.com/intelligence/address_enriched/batch/all","description":"<p>Returns enriched intelligence (with tags, clusters, entity predictions) for up to 1000 addresses on every supported network, keyed by address and then by network. Send a POST body with an <code>addresses</code> array of blockchain addresses. By default all three enrichments are included; use the <code>include</code> parameters to leave one out. Addresses that cannot be parsed are omitted from the response.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["intelligence","address_enriched","batch","all"],"host":["https://api.arkm.com"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Whether to include address tags in the response. Defaults to 'true'.</p>\n","type":"text/plain"},"key":"includeTags","value":"true"},{"disabled":true,"description":{"content":"<p>Optional. Whether to include cluster IDs in the response. Defaults to 'true'.</p>\n","type":"text/plain"},"key":"includeClusters","value":"true"},{"disabled":true,"description":{"content":"<p>Optional. Whether to include entity predictions in the response. A predicted entity is returned only for an address that has no known entity. Defaults to 'true'.</p>\n","type":"text/plain"},"key":"includeEntityPredictions","value":"true"}],"variable":[]}},"response":[{"id":"51f2f19d-1062-4cc9-9ef3-75c6afa137ec","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"addresses\": [\n    \"0x28C6c06298d514Db089934071355E5743bf21d60\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.arkm.com/intelligence/address_enriched/batch/all","host":["https://api.arkm.com"],"path":["intelligence","address_enriched","batch","all"],"query":[{"key":"includeTags","value":"true","description":"Optional. Whether to include address tags in the response. Defaults to 'true'.","disabled":true},{"key":"includeClusters","value":"true","description":"Optional. Whether to include cluster IDs in the response. Defaults to 'true'.","disabled":true},{"key":"includeEntityPredictions","value":"true","description":"Optional. Whether to include entity predictions in the response. A predicted entity is returned only for an address that has no known entity. Defaults to 'true'.","disabled":true}]},"description":"Returns enriched intelligence (with tags, clusters, entity predictions) for up to 1000 addresses on every supported network, keyed by address and then by network. Send a POST body with an `addresses` array of blockchain addresses. By default all three enrichments are included; use the `include` parameters to leave one out. Addresses that cannot be parsed are omitted from the response."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"addresses\": {\n    \"0x28C6c06298d514Db089934071355E5743bf21d60\": {\n      \"arbitrum_one\": {\n        \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n        \"arkhamEntity\": {\n          \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n          \"id\": \"binance\",\n          \"linkedin\": \"https://www.linkedin.com/company/binance\",\n          \"name\": \"Binance\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/binance\",\n          \"type\": \"cex\",\n          \"website\": \"https://binance.com\"\n        },\n        \"arkhamLabel\": {\n          \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n          \"chainType\": \"evm\",\n          \"name\": \"Hot Wallet\"\n        },\n        \"chain\": \"arbitrum_one\",\n        \"contract\": false,\n        \"isUserAddress\": false,\n        \"populatedTags\": [\n          {\n            \"chain\": \"arbitrum_one\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"proof-of-reserves\",\n            \"label\": \"Binance Proof of Reserves\",\n            \"rank\": 20,\n            \"tagParams\": \"Binance\"\n          },\n          {\n            \"chain\": \"arbitrum_one\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"cex\",\n            \"label\": \"Centralized Exchange\",\n            \"rank\": 50\n          },\n          {\n            \"chain\": \"arbitrum_one\",\n            \"disablePage\": true,\n            \"excludeEntities\": true,\n            \"id\": \"arbitrum-one-first-funder\",\n            \"label\": \"Arbitrum One First Funder: 0xC38C40098A10b026119b86BffadebABE8C26a7EE\",\n            \"rank\": 140,\n            \"tagParams\": \"0xC38C40098A10b026119b86BffadebABE8C26a7EE\"\n          },\n          {\n            \"chain\": \"arbitrum_one\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"gnosis-safe-signer-of-safe\",\n            \"label\": \"Signer of Gnosis Safe: 0x79169F99c24530904dD3a14AC54D96FAD207Fe68\",\n            \"rank\": 270,\n            \"tagParams\": \"0x79169F99c24530904dD3a14AC54D96FAD207Fe68\"\n          }\n        ]\n      },\n      \"avalanche\": {\n        \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n        \"arkhamEntity\": {\n          \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n          \"id\": \"binance\",\n          \"linkedin\": \"https://www.linkedin.com/company/binance\",\n          \"name\": \"Binance\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/binance\",\n          \"type\": \"cex\",\n          \"website\": \"https://binance.com\"\n        },\n        \"arkhamLabel\": {\n          \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n          \"chainType\": \"evm\",\n          \"name\": \"Hot Wallet\"\n        },\n        \"chain\": \"avalanche\",\n        \"contract\": false,\n        \"isUserAddress\": false,\n        \"populatedTags\": [\n          {\n            \"chain\": \"avalanche\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"proof-of-reserves\",\n            \"label\": \"Binance Proof of Reserves\",\n            \"rank\": 20,\n            \"tagParams\": \"Binance\"\n          },\n          {\n            \"chain\": \"avalanche\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"cex\",\n            \"label\": \"Centralized Exchange\",\n            \"rank\": 50\n          },\n          {\n            \"chain\": \"avalanche\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"high-transacting\",\n            \"label\": \"High Transacting\",\n            \"rank\": 160\n          }\n        ]\n      },\n      \"base\": {\n        \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n        \"arkhamEntity\": {\n          \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n          \"id\": \"binance\",\n          \"linkedin\": \"https://www.linkedin.com/company/binance\",\n          \"name\": \"Binance\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/binance\",\n          \"type\": \"cex\",\n          \"website\": \"https://binance.com\"\n        },\n        \"arkhamLabel\": {\n          \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n          \"chainType\": \"evm\",\n          \"name\": \"Hot Wallet\"\n        },\n        \"chain\": \"base\",\n        \"contract\": false,\n        \"isUserAddress\": false,\n        \"populatedTags\": [\n          {\n            \"chain\": \"base\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"proof-of-reserves\",\n            \"label\": \"Binance Proof of Reserves\",\n            \"rank\": 20,\n            \"tagParams\": \"Binance\"\n          },\n          {\n            \"chain\": \"base\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"cex\",\n            \"label\": \"Centralized Exchange\",\n            \"rank\": 50\n          },\n          {\n            \"chain\": \"base\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"high-transacting\",\n            \"label\": \"High Transacting\",\n            \"rank\": 160\n          },\n          {\n            \"chain\": \"base\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"gnosis-safe-signer-of-safe\",\n            \"label\": \"Signer of Gnosis Safe: 0xB1c055dB2FF4b90931120F5462917b8ED65D3faD\",\n            \"rank\": 270,\n            \"tagParams\": \"0xB1c055dB2FF4b90931120F5462917b8ED65D3faD\"\n          },\n          {\n            \"chain\": \"base\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"gnosis-safe-signer-of-safe\",\n            \"label\": \"Signer of Gnosis Safe: 0xD1229E2fC13b351be74Bc22819acb3bCC69A1669\",\n            \"rank\": 270,\n            \"tagParams\": \"0xD1229E2fC13b351be74Bc22819acb3bCC69A1669\"\n          }\n        ]\n      },\n      \"bsc\": {\n        \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n        \"arkhamEntity\": {\n          \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n          \"id\": \"binance\",\n          \"linkedin\": \"https://www.linkedin.com/company/binance\",\n          \"name\": \"Binance\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/binance\",\n          \"type\": \"cex\",\n          \"website\": \"https://binance.com\"\n        },\n        \"arkhamLabel\": {\n          \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n          \"chainType\": \"evm\",\n          \"name\": \"Hot Wallet\"\n        },\n        \"chain\": \"bsc\",\n        \"contract\": false,\n        \"isUserAddress\": false,\n        \"populatedTags\": [\n          {\n            \"chain\": \"bsc\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"proof-of-reserves\",\n            \"label\": \"Binance Proof of Reserves\",\n            \"rank\": 20,\n            \"tagParams\": \"Binance\"\n          },\n          {\n            \"chain\": \"bsc\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"cex\",\n            \"label\": \"Centralized Exchange\",\n            \"rank\": 50\n          },\n          {\n            \"chain\": \"bsc\",\n            \"disablePage\": true,\n            \"excludeEntities\": true,\n            \"id\": \"hot-wallet\",\n            \"label\": \"Hot Wallet\",\n            \"rank\": 130\n          },\n          {\n            \"chain\": \"bsc\",\n            \"disablePage\": true,\n            \"excludeEntities\": true,\n            \"id\": \"bsc-first-funder\",\n            \"label\": \"BSC First Funder: 0x548815De64820EEDAe9302A5aE03Dfd7094E29aE\",\n            \"rank\": 140,\n            \"tagParams\": \"0x548815De64820EEDAe9302A5aE03Dfd7094E29aE\"\n          },\n          {\n            \"chain\": \"bsc\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"high-transacting\",\n            \"label\": \"High Transacting\",\n            \"rank\": 160\n          }\n        ]\n      },\n      \"ethereum\": {\n        \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n        \"arkhamEntity\": {\n          \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n          \"id\": \"binance\",\n          \"linkedin\": \"https://www.linkedin.com/company/binance\",\n          \"name\": \"Binance\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/binance\",\n          \"type\": \"cex\",\n          \"website\": \"https://binance.com\"\n        },\n        \"arkhamLabel\": {\n          \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n          \"chainType\": \"evm\",\n          \"name\": \"Hot Wallet\"\n        },\n        \"chain\": \"ethereum\",\n        \"contract\": false,\n        \"isUserAddress\": false,\n        \"populatedTags\": [\n          {\n            \"chain\": \"ethereum\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"proof-of-reserves\",\n            \"label\": \"Binance Proof of Reserves\",\n            \"rank\": 20,\n            \"tagParams\": \"Binance\"\n          },\n          {\n            \"chain\": \"ethereum\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"cex\",\n            \"label\": \"Centralized Exchange\",\n            \"rank\": 50\n          },\n          {\n            \"chain\": \"ethereum\",\n            \"disablePage\": true,\n            \"excludeEntities\": true,\n            \"id\": \"hot-wallet\",\n            \"label\": \"Hot Wallet\",\n            \"rank\": 130\n          },\n          {\n            \"chain\": \"ethereum\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"tornadocash-recipient\",\n            \"label\": \"Tornado Cash Recipient\",\n            \"rank\": 150\n          },\n          {\n            \"chain\": \"ethereum\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"high-transacting\",\n            \"label\": \"High Transacting\",\n            \"rank\": 160\n          },\n          {\n            \"chain\": \"ethereum\",\n            \"disablePage\": true,\n            \"excludeEntities\": false,\n            \"id\": \"contract-deployer\",\n            \"label\": \"Contract Deployer\",\n            \"rank\": 180\n          },\n          {\n            \"chain\": \"ethereum\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"gnosis-safe-signer-of-safe-prev\",\n            \"label\": \"Prev. Signer of Gnosis Safe: 0xe2572Ce62688019a99d00a613D63E8f411410fc7\",\n            \"rank\": 290,\n            \"tagParams\": \"0xe2572Ce62688019a99d00a613D63E8f411410fc7\"\n          },\n          {\n            \"chain\": \"ethereum\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"donor\",\n            \"label\": \"Ukraine Donations Donor\",\n            \"rank\": 370,\n            \"tagParams\": \"Ukraine Donations\"\n          },\n          {\n            \"chain\": \"ethereum\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"tokenized-eth2-staker\",\n            \"label\": \"Tokenized ETH2 Staker\",\n            \"rank\": 510\n          }\n        ]\n      },\n      \"flare\": {\n        \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n        \"arkhamEntity\": {\n          \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n          \"id\": \"binance\",\n          \"linkedin\": \"https://www.linkedin.com/company/binance\",\n          \"name\": \"Binance\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/binance\",\n          \"type\": \"cex\",\n          \"website\": \"https://binance.com\"\n        },\n        \"arkhamLabel\": {\n          \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n          \"chainType\": \"evm\",\n          \"name\": \"Hot Wallet\"\n        },\n        \"chain\": \"flare\",\n        \"contract\": false,\n        \"isUserAddress\": false,\n        \"populatedTags\": [\n          {\n            \"chain\": \"flare\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"proof-of-reserves\",\n            \"label\": \"Binance Proof of Reserves\",\n            \"rank\": 20,\n            \"tagParams\": \"Binance\"\n          },\n          {\n            \"chain\": \"flare\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"cex\",\n            \"label\": \"Centralized Exchange\",\n            \"rank\": 50\n          }\n        ]\n      },\n      \"hypercore\": {\n        \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n        \"chain\": \"hypercore\",\n        \"isUserAddress\": false\n      },\n      \"hyperevm\": {\n        \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n        \"arkhamEntity\": {\n          \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n          \"id\": \"binance\",\n          \"linkedin\": \"https://www.linkedin.com/company/binance\",\n          \"name\": \"Binance\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/binance\",\n          \"type\": \"cex\",\n          \"website\": \"https://binance.com\"\n        },\n        \"arkhamLabel\": {\n          \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n          \"chainType\": \"evm\",\n          \"name\": \"Hot Wallet\"\n        },\n        \"chain\": \"hyperevm\",\n        \"contract\": false,\n        \"isUserAddress\": false,\n        \"populatedTags\": [\n          {\n            \"chain\": \"hyperevm\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"cex\",\n            \"label\": \"Centralized Exchange\",\n            \"rank\": 50\n          }\n        ]\n      },\n      \"optimism\": {\n        \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n        \"arkhamEntity\": {\n          \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n          \"id\": \"binance\",\n          \"linkedin\": \"https://www.linkedin.com/company/binance\",\n          \"name\": \"Binance\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/binance\",\n          \"type\": \"cex\",\n          \"website\": \"https://binance.com\"\n        },\n        \"arkhamLabel\": {\n          \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n          \"chainType\": \"evm\",\n          \"name\": \"Hot Wallet\"\n        },\n        \"chain\": \"optimism\",\n        \"contract\": false,\n        \"isUserAddress\": false,\n        \"populatedTags\": [\n          {\n            \"chain\": \"optimism\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"proof-of-reserves\",\n            \"label\": \"Binance Proof of Reserves\",\n            \"rank\": 20,\n            \"tagParams\": \"Binance\"\n          },\n          {\n            \"chain\": \"optimism\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"cex\",\n            \"label\": \"Centralized Exchange\",\n            \"rank\": 50\n          },\n          {\n            \"chain\": \"optimism\",\n            \"disablePage\": true,\n            \"excludeEntities\": true,\n            \"id\": \"optimism-first-funder\",\n            \"label\": \"Optimism First Funder: 0xe403a23Ef3c63478916620fe4cBd51e292C45A30\",\n            \"rank\": 140,\n            \"tagParams\": \"0xe403a23Ef3c63478916620fe4cBd51e292C45A30\"\n          },\n          {\n            \"chain\": \"optimism\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"gnosis-safe-signer-of-safe\",\n            \"label\": \"Signer of Gnosis Safe: 0xa40dd37dbcc2c0799921ca0ef7e8148e828C70FD\",\n            \"rank\": 270,\n            \"tagParams\": \"0xa40dd37dbcc2c0799921ca0ef7e8148e828C70FD\"\n          }\n        ]\n      },\n      \"polygon\": {\n        \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n        \"arkhamEntity\": {\n          \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n          \"id\": \"binance\",\n          \"linkedin\": \"https://www.linkedin.com/company/binance\",\n          \"name\": \"Binance\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/binance\",\n          \"type\": \"cex\",\n          \"website\": \"https://binance.com\"\n        },\n        \"arkhamLabel\": {\n          \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n          \"chainType\": \"evm\",\n          \"name\": \"Hot Wallet\"\n        },\n        \"chain\": \"polygon\",\n        \"contract\": false,\n        \"isUserAddress\": false,\n        \"populatedTags\": [\n          {\n            \"chain\": \"polygon\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"proof-of-reserves\",\n            \"label\": \"Binance Proof of Reserves\",\n            \"rank\": 20,\n            \"tagParams\": \"Binance\"\n          },\n          {\n            \"chain\": \"polygon\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"cex\",\n            \"label\": \"Centralized Exchange\",\n            \"rank\": 50\n          },\n          {\n            \"chain\": \"polygon\",\n            \"disablePage\": true,\n            \"excludeEntities\": true,\n            \"id\": \"hot-wallet\",\n            \"label\": \"Hot Wallet\",\n            \"rank\": 130\n          },\n          {\n            \"chain\": \"polygon\",\n            \"disablePage\": true,\n            \"excludeEntities\": true,\n            \"id\": \"polygon-first-funder\",\n            \"label\": \"Polygon First Funder: 0x05158d7a59FA8AC5007B3C8BabAa216568Fd32B3\",\n            \"rank\": 140,\n            \"tagParams\": \"0x05158d7a59FA8AC5007B3C8BabAa216568Fd32B3\"\n          },\n          {\n            \"chain\": \"polygon\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"high-transacting\",\n            \"label\": \"High Transacting\",\n            \"rank\": 160\n          },\n          {\n            \"chain\": \"polygon\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"gnosis-safe-signer-of-safe\",\n            \"label\": \"Signer of Gnosis Safe: 0xC3F8025eBBdE2b33EBB31e014C3Cf8F6a0Ce338A\",\n            \"rank\": 270,\n            \"tagParams\": \"0xC3F8025eBBdE2b33EBB31e014C3Cf8F6a0Ce338A\"\n          }\n        ]\n      },\n      \"robinhood\": {\n        \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n        \"arkhamEntity\": {\n          \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n          \"id\": \"binance\",\n          \"linkedin\": \"https://www.linkedin.com/company/binance\",\n          \"name\": \"Binance\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/binance\",\n          \"type\": \"cex\",\n          \"website\": \"https://binance.com\"\n        },\n        \"arkhamLabel\": {\n          \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n          \"chainType\": \"evm\",\n          \"name\": \"Hot Wallet\"\n        },\n        \"chain\": \"robinhood\",\n        \"contract\": false,\n        \"isUserAddress\": false,\n        \"populatedTags\": [\n          {\n            \"chain\": \"robinhood\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"cex\",\n            \"label\": \"Centralized Exchange\",\n            \"rank\": 50\n          }\n        ]\n      }\n    }\n  }\n}"}],"_postman_id":"946f888e-d01f-4b1f-8f28-76392f9a7807"},{"name":"Get intelligence about an address with additional address information","id":"f477b0ef-70fa-4ae7-a59a-4875af8f35fe","request":{"method":"GET","header":[],"url":"https://api.arkm.com/intelligence/address_enriched/:address","description":"<p>Returns the same intelligence as /intelligence/address/{address}, plus the address's tags and cluster IDs. Tags, cluster IDs and the predicted entity are each included by default; use the include parameters to leave any of them out.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["intelligence","address_enriched",":address"],"host":["https://api.arkm.com"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Blockchain network to query. Only one network is used: if multiple values are provided, only the first applies. If omitted, the best chain is auto-detected across all supported chains.</p>\n","type":"text/plain"},"key":"chain","value":"ethereum,bsc,polygon"},{"disabled":true,"description":{"content":"<p>Optional. Whether to include address tags in the response. Defaults to 'true'.</p>\n","type":"text/plain"},"key":"includeTags","value":"true"},{"disabled":true,"description":{"content":"<p>Optional. Whether to include cluster IDs in the response. Defaults to 'true'.</p>\n","type":"text/plain"},"key":"includeClusters","value":"true"},{"disabled":true,"description":{"content":"<p>Optional. Whether to include entity predictions in the response. A predicted entity is returned only for an address that has no known entity. Defaults to 'true'.</p>\n","type":"text/plain"},"key":"includeEntityPredictions","value":"true"}],"variable":[{"id":"53cca18f-1188-4f92-a6f3-7010529dedff","description":{"content":"<p>Required. The blockchain address to query.</p>\n","type":"text/plain"},"type":"any","value":"0x28C6c06298d514Db089934071355E5743bf21d60","key":"address"}]}},"response":[{"id":"3a9d7c0d-e2d3-4e8b-8e36-3fda3b2444be","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/intelligence/address_enriched/:address","host":["https://api.arkm.com"],"path":["intelligence","address_enriched",":address"],"query":[{"key":"chain","value":"ethereum,bsc,polygon","description":"Optional. Blockchain network to query. Only one network is used: if multiple values are provided, only the first applies. If omitted, the best chain is auto-detected across all supported chains.","disabled":true},{"key":"includeTags","value":"true","description":"Optional. Whether to include address tags in the response. Defaults to 'true'.","disabled":true},{"key":"includeClusters","value":"true","description":"Optional. Whether to include cluster IDs in the response. Defaults to 'true'.","disabled":true},{"key":"includeEntityPredictions","value":"true","description":"Optional. Whether to include entity predictions in the response. A predicted entity is returned only for an address that has no known entity. Defaults to 'true'.","disabled":true}],"variable":[{"key":"address","value":"0x28C6c06298d514Db089934071355E5743bf21d60","description":"Required. The blockchain address to query."}]},"description":"Returns the same intelligence as /intelligence/address/{address}, plus the address's tags and cluster IDs. Tags, cluster IDs and the predicted entity are each included by default; use the include parameters to leave any of them out."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n  \"arkhamEntity\": {\n    \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n    \"id\": \"binance\",\n    \"linkedin\": \"https://www.linkedin.com/company/binance\",\n    \"name\": \"Binance\",\n    \"note\": \"\",\n    \"service\": null,\n    \"twitter\": \"https://twitter.com/binance\",\n    \"type\": \"cex\",\n    \"website\": \"https://binance.com\"\n  },\n  \"arkhamLabel\": {\n    \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n    \"chainType\": \"evm\",\n    \"name\": \"Hot Wallet\"\n  },\n  \"chain\": \"ethereum\",\n  \"contract\": false,\n  \"isUserAddress\": false,\n  \"populatedTags\": [\n    {\n      \"chain\": \"ethereum\",\n      \"disablePage\": false,\n      \"excludeEntities\": false,\n      \"id\": \"proof-of-reserves\",\n      \"label\": \"Binance Proof of Reserves\",\n      \"rank\": 20,\n      \"tagParams\": \"Binance\"\n    }\n  ]\n}"}],"_postman_id":"f477b0ef-70fa-4ae7-a59a-4875af8f35fe"},{"name":"Get intelligence about an address on all chains with additional address information","id":"bc959a49-a0d6-4162-a6eb-735216c2a1e3","request":{"method":"GET","header":[],"url":"https://api.arkm.com/intelligence/address_enriched/:address/all","description":"<p>Similar to /intelligence/address_enriched/{address}, but aggregates data across every supported chain. By default, includes tags, entity predictions, and cluster IDs. Use query parameters to exclude specific enrichments.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["intelligence","address_enriched",":address","all"],"host":["https://api.arkm.com"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Whether to include address tags in the response. Defaults to 'true'.</p>\n","type":"text/plain"},"key":"includeTags","value":"true"},{"disabled":true,"description":{"content":"<p>Optional. Whether to include entity predictions in the response. A predicted entity is returned only for an address that has no known entity. Defaults to 'true'.</p>\n","type":"text/plain"},"key":"includeEntityPredictions","value":"true"},{"disabled":true,"description":{"content":"<p>Optional. Whether to include cluster IDs in the response. Defaults to 'true'.</p>\n","type":"text/plain"},"key":"includeClusters","value":"true"}],"variable":[{"id":"1b704433-2713-4b77-aa71-c249ef280886","description":{"content":"<p>Required. The blockchain address to query across all compatible chains.</p>\n","type":"text/plain"},"type":"any","value":"0x28C6c06298d514Db089934071355E5743bf21d60","key":"address"}]}},"response":[{"id":"6b3eb710-603d-488d-8acb-5dc01eddf587","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/intelligence/address_enriched/:address/all","host":["https://api.arkm.com"],"path":["intelligence","address_enriched",":address","all"],"query":[{"key":"includeTags","value":"true","description":"Optional. Whether to include address tags in the response. Defaults to 'true'.","disabled":true},{"key":"includeEntityPredictions","value":"true","description":"Optional. Whether to include entity predictions in the response. A predicted entity is returned only for an address that has no known entity. Defaults to 'true'.","disabled":true},{"key":"includeClusters","value":"true","description":"Optional. Whether to include cluster IDs in the response. Defaults to 'true'.","disabled":true}],"variable":[{"key":"address","value":"0x28C6c06298d514Db089934071355E5743bf21d60","description":"Required. The blockchain address to query across all compatible chains."}]},"description":"Similar to /intelligence/address_enriched/{address}, but aggregates data across every supported chain. By default, includes tags, entity predictions, and cluster IDs. Use query parameters to exclude specific enrichments."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"arbitrum_one\": {\n    \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n    \"arkhamEntity\": {\n      \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n      \"id\": \"binance\",\n      \"linkedin\": \"https://www.linkedin.com/company/binance\",\n      \"name\": \"Binance\",\n      \"note\": \"\",\n      \"service\": null,\n      \"twitter\": \"https://twitter.com/binance\",\n      \"type\": \"cex\",\n      \"website\": \"https://binance.com\"\n    },\n    \"arkhamLabel\": {\n      \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n      \"chainType\": \"evm\",\n      \"name\": \"Hot Wallet\"\n    },\n    \"chain\": \"arbitrum_one\",\n    \"contract\": false,\n    \"isUserAddress\": false,\n    \"populatedTags\": [\n      {\n        \"chain\": \"arbitrum_one\",\n        \"disablePage\": false,\n        \"excludeEntities\": false,\n        \"id\": \"proof-of-reserves\",\n        \"label\": \"Binance Proof of Reserves\",\n        \"rank\": 20,\n        \"tagParams\": \"Binance\"\n      },\n      {\n        \"chain\": \"arbitrum_one\",\n        \"disablePage\": false,\n        \"excludeEntities\": false,\n        \"id\": \"cex\",\n        \"label\": \"Centralized Exchange\",\n        \"rank\": 50\n      },\n      {\n        \"chain\": \"arbitrum_one\",\n        \"disablePage\": true,\n        \"excludeEntities\": true,\n        \"id\": \"arbitrum-one-first-funder\",\n        \"label\": \"Arbitrum One First Funder: 0xC38C40098A10b026119b86BffadebABE8C26a7EE\",\n        \"rank\": 140,\n        \"tagParams\": \"0xC38C40098A10b026119b86BffadebABE8C26a7EE\"\n      },\n      {\n        \"chain\": \"arbitrum_one\",\n        \"disablePage\": false,\n        \"excludeEntities\": false,\n        \"id\": \"gnosis-safe-signer-of-safe\",\n        \"label\": \"Signer of Gnosis Safe: 0x79169F99c24530904dD3a14AC54D96FAD207Fe68\",\n        \"rank\": 270,\n        \"tagParams\": \"0x79169F99c24530904dD3a14AC54D96FAD207Fe68\"\n      }\n    ]\n  },\n  \"avalanche\": {\n    \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n    \"arkhamEntity\": {\n      \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n      \"id\": \"binance\",\n      \"linkedin\": \"https://www.linkedin.com/company/binance\",\n      \"name\": \"Binance\",\n      \"note\": \"\",\n      \"service\": null,\n      \"twitter\": \"https://twitter.com/binance\",\n      \"type\": \"cex\",\n      \"website\": \"https://binance.com\"\n    },\n    \"arkhamLabel\": {\n      \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n      \"chainType\": \"evm\",\n      \"name\": \"Hot Wallet\"\n    },\n    \"chain\": \"avalanche\",\n    \"contract\": false,\n    \"isUserAddress\": false,\n    \"populatedTags\": [\n      {\n        \"chain\": \"avalanche\",\n        \"disablePage\": false,\n        \"excludeEntities\": false,\n        \"id\": \"proof-of-reserves\",\n        \"label\": \"Binance Proof of Reserves\",\n        \"rank\": 20,\n        \"tagParams\": \"Binance\"\n      },\n      {\n        \"chain\": \"avalanche\",\n        \"disablePage\": false,\n        \"excludeEntities\": false,\n        \"id\": \"cex\",\n        \"label\": \"Centralized Exchange\",\n        \"rank\": 50\n      },\n      {\n        \"chain\": \"avalanche\",\n        \"disablePage\": false,\n        \"excludeEntities\": false,\n        \"id\": \"high-transacting\",\n        \"label\": \"High Transacting\",\n        \"rank\": 160\n      }\n    ]\n  },\n  \"base\": {\n    \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n    \"arkhamEntity\": {\n      \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n      \"id\": \"binance\",\n      \"linkedin\": \"https://www.linkedin.com/company/binance\",\n      \"name\": \"Binance\",\n      \"note\": \"\",\n      \"service\": null,\n      \"twitter\": \"https://twitter.com/binance\",\n      \"type\": \"cex\",\n      \"website\": \"https://binance.com\"\n    },\n    \"arkhamLabel\": {\n      \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n      \"chainType\": \"evm\",\n      \"name\": \"Hot Wallet\"\n    },\n    \"chain\": \"base\",\n    \"contract\": false,\n    \"isUserAddress\": false,\n    \"populatedTags\": [\n      {\n        \"chain\": \"base\",\n        \"disablePage\": false,\n        \"excludeEntities\": false,\n        \"id\": \"proof-of-reserves\",\n        \"label\": \"Binance Proof of Reserves\",\n        \"rank\": 20,\n        \"tagParams\": \"Binance\"\n      },\n      {\n        \"chain\": \"base\",\n        \"disablePage\": false,\n        \"excludeEntities\": false,\n        \"id\": \"cex\",\n        \"label\": \"Centralized Exchange\",\n        \"rank\": 50\n      },\n      {\n        \"chain\": \"base\",\n        \"disablePage\": false,\n        \"excludeEntities\": false,\n        \"id\": \"high-transacting\",\n        \"label\": \"High Transacting\",\n        \"rank\": 160\n      },\n      {\n        \"chain\": \"base\",\n        \"disablePage\": false,\n        \"excludeEntities\": false,\n        \"id\": \"gnosis-safe-signer-of-safe\",\n        \"label\": \"Signer of Gnosis Safe: 0xB1c055dB2FF4b90931120F5462917b8ED65D3faD\",\n        \"rank\": 270,\n        \"tagParams\": \"0xB1c055dB2FF4b90931120F5462917b8ED65D3faD\"\n      },\n      {\n        \"chain\": \"base\",\n        \"disablePage\": false,\n        \"excludeEntities\": false,\n        \"id\": \"gnosis-safe-signer-of-safe\",\n        \"label\": \"Signer of Gnosis Safe: 0xD1229E2fC13b351be74Bc22819acb3bCC69A1669\",\n        \"rank\": 270,\n        \"tagParams\": \"0xD1229E2fC13b351be74Bc22819acb3bCC69A1669\"\n      }\n    ]\n  },\n  \"bsc\": {\n    \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n    \"arkhamEntity\": {\n      \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n      \"id\": \"binance\",\n      \"linkedin\": \"https://www.linkedin.com/company/binance\",\n      \"name\": \"Binance\",\n      \"note\": \"\",\n      \"service\": null,\n      \"twitter\": \"https://twitter.com/binance\",\n      \"type\": \"cex\",\n      \"website\": \"https://binance.com\"\n    },\n    \"arkhamLabel\": {\n      \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n      \"chainType\": \"evm\",\n      \"name\": \"Hot Wallet\"\n    },\n    \"chain\": \"bsc\",\n    \"contract\": false,\n    \"isUserAddress\": false,\n    \"populatedTags\": [\n      {\n        \"chain\": \"bsc\",\n        \"disablePage\": false,\n        \"excludeEntities\": false,\n        \"id\": \"proof-of-reserves\",\n        \"label\": \"Binance Proof of Reserves\",\n        \"rank\": 20,\n        \"tagParams\": \"Binance\"\n      },\n      {\n        \"chain\": \"bsc\",\n        \"disablePage\": false,\n        \"excludeEntities\": false,\n        \"id\": \"cex\",\n        \"label\": \"Centralized Exchange\",\n        \"rank\": 50\n      },\n      {\n        \"chain\": \"bsc\",\n        \"disablePage\": true,\n        \"excludeEntities\": true,\n        \"id\": \"hot-wallet\",\n        \"label\": \"Hot Wallet\",\n        \"rank\": 130\n      },\n      {\n        \"chain\": \"bsc\",\n        \"disablePage\": true,\n        \"excludeEntities\": true,\n        \"id\": \"bsc-first-funder\",\n        \"label\": \"BSC First Funder: 0x548815De64820EEDAe9302A5aE03Dfd7094E29aE\",\n        \"rank\": 140,\n        \"tagParams\": \"0x548815De64820EEDAe9302A5aE03Dfd7094E29aE\"\n      },\n      {\n        \"chain\": \"bsc\",\n        \"disablePage\": false,\n        \"excludeEntities\": false,\n        \"id\": \"high-transacting\",\n        \"label\": \"High Transacting\",\n        \"rank\": 160\n      }\n    ]\n  },\n  \"ethereum\": {\n    \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n    \"arkhamEntity\": {\n      \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n      \"id\": \"binance\",\n      \"linkedin\": \"https://www.linkedin.com/company/binance\",\n      \"name\": \"Binance\",\n      \"note\": \"\",\n      \"service\": null,\n      \"twitter\": \"https://twitter.com/binance\",\n      \"type\": \"cex\",\n      \"website\": \"https://binance.com\"\n    },\n    \"arkhamLabel\": {\n      \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n      \"chainType\": \"evm\",\n      \"name\": \"Hot Wallet\"\n    },\n    \"chain\": \"ethereum\",\n    \"contract\": false,\n    \"isUserAddress\": false,\n    \"populatedTags\": [\n      {\n        \"chain\": \"ethereum\",\n        \"disablePage\": false,\n        \"excludeEntities\": false,\n        \"id\": \"proof-of-reserves\",\n        \"label\": \"Binance Proof of Reserves\",\n        \"rank\": 20,\n        \"tagParams\": \"Binance\"\n      },\n      {\n        \"chain\": \"ethereum\",\n        \"disablePage\": false,\n        \"excludeEntities\": false,\n        \"id\": \"cex\",\n        \"label\": \"Centralized Exchange\",\n        \"rank\": 50\n      },\n      {\n        \"chain\": \"ethereum\",\n        \"disablePage\": true,\n        \"excludeEntities\": true,\n        \"id\": \"hot-wallet\",\n        \"label\": \"Hot Wallet\",\n        \"rank\": 130\n      },\n      {\n        \"chain\": \"ethereum\",\n        \"disablePage\": false,\n        \"excludeEntities\": false,\n        \"id\": \"tornadocash-recipient\",\n        \"label\": \"Tornado Cash Recipient\",\n        \"rank\": 150\n      },\n      {\n        \"chain\": \"ethereum\",\n        \"disablePage\": false,\n        \"excludeEntities\": false,\n        \"id\": \"high-transacting\",\n        \"label\": \"High Transacting\",\n        \"rank\": 160\n      },\n      {\n        \"chain\": \"ethereum\",\n        \"disablePage\": true,\n        \"excludeEntities\": false,\n        \"id\": \"contract-deployer\",\n        \"label\": \"Contract Deployer\",\n        \"rank\": 180\n      },\n      {\n        \"chain\": \"ethereum\",\n        \"disablePage\": false,\n        \"excludeEntities\": false,\n        \"id\": \"gnosis-safe-signer-of-safe-prev\",\n        \"label\": \"Prev. Signer of Gnosis Safe: 0xe2572Ce62688019a99d00a613D63E8f411410fc7\",\n        \"rank\": 290,\n        \"tagParams\": \"0xe2572Ce62688019a99d00a613D63E8f411410fc7\"\n      },\n      {\n        \"chain\": \"ethereum\",\n        \"disablePage\": false,\n        \"excludeEntities\": false,\n        \"id\": \"donor\",\n        \"label\": \"Ukraine Donations Donor\",\n        \"rank\": 370,\n        \"tagParams\": \"Ukraine Donations\"\n      },\n      {\n        \"chain\": \"ethereum\",\n        \"disablePage\": false,\n        \"excludeEntities\": false,\n        \"id\": \"tokenized-eth2-staker\",\n        \"label\": \"Tokenized ETH2 Staker\",\n        \"rank\": 510\n      }\n    ]\n  },\n  \"flare\": {\n    \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n    \"arkhamEntity\": {\n      \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n      \"id\": \"binance\",\n      \"linkedin\": \"https://www.linkedin.com/company/binance\",\n      \"name\": \"Binance\",\n      \"note\": \"\",\n      \"service\": null,\n      \"twitter\": \"https://twitter.com/binance\",\n      \"type\": \"cex\",\n      \"website\": \"https://binance.com\"\n    },\n    \"arkhamLabel\": {\n      \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n      \"chainType\": \"evm\",\n      \"name\": \"Hot Wallet\"\n    },\n    \"chain\": \"flare\",\n    \"contract\": false,\n    \"isUserAddress\": false,\n    \"populatedTags\": [\n      {\n        \"chain\": \"flare\",\n        \"disablePage\": false,\n        \"excludeEntities\": false,\n        \"id\": \"proof-of-reserves\",\n        \"label\": \"Binance Proof of Reserves\",\n        \"rank\": 20,\n        \"tagParams\": \"Binance\"\n      },\n      {\n        \"chain\": \"flare\",\n        \"disablePage\": false,\n        \"excludeEntities\": false,\n        \"id\": \"cex\",\n        \"label\": \"Centralized Exchange\",\n        \"rank\": 50\n      }\n    ]\n  },\n  \"hypercore\": {\n    \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n    \"chain\": \"hypercore\",\n    \"isUserAddress\": false\n  },\n  \"hyperevm\": {\n    \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n    \"arkhamEntity\": {\n      \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n      \"id\": \"binance\",\n      \"linkedin\": \"https://www.linkedin.com/company/binance\",\n      \"name\": \"Binance\",\n      \"note\": \"\",\n      \"service\": null,\n      \"twitter\": \"https://twitter.com/binance\",\n      \"type\": \"cex\",\n      \"website\": \"https://binance.com\"\n    },\n    \"arkhamLabel\": {\n      \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n      \"chainType\": \"evm\",\n      \"name\": \"Hot Wallet\"\n    },\n    \"chain\": \"hyperevm\",\n    \"contract\": false,\n    \"isUserAddress\": false,\n    \"populatedTags\": [\n      {\n        \"chain\": \"hyperevm\",\n        \"disablePage\": false,\n        \"excludeEntities\": false,\n        \"id\": \"cex\",\n        \"label\": \"Centralized Exchange\",\n        \"rank\": 50\n      }\n    ]\n  },\n  \"optimism\": {\n    \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n    \"arkhamEntity\": {\n      \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n      \"id\": \"binance\",\n      \"linkedin\": \"https://www.linkedin.com/company/binance\",\n      \"name\": \"Binance\",\n      \"note\": \"\",\n      \"service\": null,\n      \"twitter\": \"https://twitter.com/binance\",\n      \"type\": \"cex\",\n      \"website\": \"https://binance.com\"\n    },\n    \"arkhamLabel\": {\n      \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n      \"chainType\": \"evm\",\n      \"name\": \"Hot Wallet\"\n    },\n    \"chain\": \"optimism\",\n    \"contract\": false,\n    \"isUserAddress\": false,\n    \"populatedTags\": [\n      {\n        \"chain\": \"optimism\",\n        \"disablePage\": false,\n        \"excludeEntities\": false,\n        \"id\": \"proof-of-reserves\",\n        \"label\": \"Binance Proof of Reserves\",\n        \"rank\": 20,\n        \"tagParams\": \"Binance\"\n      },\n      {\n        \"chain\": \"optimism\",\n        \"disablePage\": false,\n        \"excludeEntities\": false,\n        \"id\": \"cex\",\n        \"label\": \"Centralized Exchange\",\n        \"rank\": 50\n      },\n      {\n        \"chain\": \"optimism\",\n        \"disablePage\": true,\n        \"excludeEntities\": true,\n        \"id\": \"optimism-first-funder\",\n        \"label\": \"Optimism First Funder: 0xe403a23Ef3c63478916620fe4cBd51e292C45A30\",\n        \"rank\": 140,\n        \"tagParams\": \"0xe403a23Ef3c63478916620fe4cBd51e292C45A30\"\n      },\n      {\n        \"chain\": \"optimism\",\n        \"disablePage\": false,\n        \"excludeEntities\": false,\n        \"id\": \"gnosis-safe-signer-of-safe\",\n        \"label\": \"Signer of Gnosis Safe: 0xa40dd37dbcc2c0799921ca0ef7e8148e828C70FD\",\n        \"rank\": 270,\n        \"tagParams\": \"0xa40dd37dbcc2c0799921ca0ef7e8148e828C70FD\"\n      }\n    ]\n  },\n  \"polygon\": {\n    \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n    \"arkhamEntity\": {\n      \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n      \"id\": \"binance\",\n      \"linkedin\": \"https://www.linkedin.com/company/binance\",\n      \"name\": \"Binance\",\n      \"note\": \"\",\n      \"service\": null,\n      \"twitter\": \"https://twitter.com/binance\",\n      \"type\": \"cex\",\n      \"website\": \"https://binance.com\"\n    },\n    \"arkhamLabel\": {\n      \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n      \"chainType\": \"evm\",\n      \"name\": \"Hot Wallet\"\n    },\n    \"chain\": \"polygon\",\n    \"contract\": false,\n    \"isUserAddress\": false,\n    \"populatedTags\": [\n      {\n        \"chain\": \"polygon\",\n        \"disablePage\": false,\n        \"excludeEntities\": false,\n        \"id\": \"proof-of-reserves\",\n        \"label\": \"Binance Proof of Reserves\",\n        \"rank\": 20,\n        \"tagParams\": \"Binance\"\n      },\n      {\n        \"chain\": \"polygon\",\n        \"disablePage\": false,\n        \"excludeEntities\": false,\n        \"id\": \"cex\",\n        \"label\": \"Centralized Exchange\",\n        \"rank\": 50\n      },\n      {\n        \"chain\": \"polygon\",\n        \"disablePage\": true,\n        \"excludeEntities\": true,\n        \"id\": \"hot-wallet\",\n        \"label\": \"Hot Wallet\",\n        \"rank\": 130\n      },\n      {\n        \"chain\": \"polygon\",\n        \"disablePage\": true,\n        \"excludeEntities\": true,\n        \"id\": \"polygon-first-funder\",\n        \"label\": \"Polygon First Funder: 0x05158d7a59FA8AC5007B3C8BabAa216568Fd32B3\",\n        \"rank\": 140,\n        \"tagParams\": \"0x05158d7a59FA8AC5007B3C8BabAa216568Fd32B3\"\n      },\n      {\n        \"chain\": \"polygon\",\n        \"disablePage\": false,\n        \"excludeEntities\": false,\n        \"id\": \"high-transacting\",\n        \"label\": \"High Transacting\",\n        \"rank\": 160\n      },\n      {\n        \"chain\": \"polygon\",\n        \"disablePage\": false,\n        \"excludeEntities\": false,\n        \"id\": \"gnosis-safe-signer-of-safe\",\n        \"label\": \"Signer of Gnosis Safe: 0xC3F8025eBBdE2b33EBB31e014C3Cf8F6a0Ce338A\",\n        \"rank\": 270,\n        \"tagParams\": \"0xC3F8025eBBdE2b33EBB31e014C3Cf8F6a0Ce338A\"\n      }\n    ]\n  },\n  \"robinhood\": {\n    \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n    \"arkhamEntity\": {\n      \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n      \"id\": \"binance\",\n      \"linkedin\": \"https://www.linkedin.com/company/binance\",\n      \"name\": \"Binance\",\n      \"note\": \"\",\n      \"service\": null,\n      \"twitter\": \"https://twitter.com/binance\",\n      \"type\": \"cex\",\n      \"website\": \"https://binance.com\"\n    },\n    \"arkhamLabel\": {\n      \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n      \"chainType\": \"evm\",\n      \"name\": \"Hot Wallet\"\n    },\n    \"chain\": \"robinhood\",\n    \"contract\": false,\n    \"isUserAddress\": false,\n    \"populatedTags\": [\n      {\n        \"chain\": \"robinhood\",\n        \"disablePage\": false,\n        \"excludeEntities\": false,\n        \"id\": \"cex\",\n        \"label\": \"Centralized Exchange\",\n        \"rank\": 50\n      }\n    ]\n  }\n}"}],"_postman_id":"bc959a49-a0d6-4162-a6eb-735216c2a1e3"},{"name":"Get address-tag association updates","id":"c747561c-49d4-4141-990f-372e1baa9d08","request":{"method":"GET","header":[],"url":"https://api.arkm.com/intelligence/address_tags/updates?since=2025-01-01T00:00:00Z","description":"<p>Returns a feed of address-tag association changes (new tags applied to addresses, removed tags) with cursor-based pagination.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["intelligence","address_tags","updates"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Optional. Returns changes since this time. Required unless both 'from' and 'to' are provided; mutually exclusive with 'from'/'to'.</p>\n","type":"text/plain"},"key":"since","value":"2025-01-01T00:00:00Z"},{"disabled":true,"description":{"content":"<p>Optional. Start of time window (use with 'to', max 7-day window). Provide together with 'to' as an alternative to 'since'; mutually exclusive with 'since'.</p>\n","type":"text/plain"},"key":"from","value":"2025-01-01T00:00:00Z"},{"disabled":true,"description":{"content":"<p>Optional. End of time window (use with 'from', max 7-day window). Provide together with 'from' as an alternative to 'since'; mutually exclusive with 'since'.</p>\n","type":"text/plain"},"key":"to","value":"2025-01-07T00:00:00Z"},{"disabled":true,"description":{"content":"<p>Optional. Filter by change status. For address tags only 'new', 'deleted', and 'all' are valid (no 'updated').</p>\n","type":"text/plain"},"key":"status","value":"new"},{"disabled":true,"description":{"content":"<p>Optional. Blockchain networks to filter by.</p>\n","type":"text/plain"},"key":"chain","value":"ethereum,bsc"},{"disabled":true,"description":{"content":"<p>Optional. Blockchain addresses to filter by. Max 100.</p>\n","type":"text/plain"},"key":"address","value":"0x28C6c06298d514Db089934071355E5743bf21d60"},{"disabled":true,"description":{"content":"<p>Optional. Tag IDs to filter by. Max 100.</p>\n","type":"text/plain"},"key":"tagId","value":"early-token-holder,contract-deployer"},{"disabled":true,"description":{"content":"<p>Optional. Filter by tag parameters (JSON string matching tag-specific params).</p>\n","type":"text/plain"},"key":"tagParams","value":"Binance"},{"disabled":true,"description":{"content":"<p>Optional. Entity IDs to filter by. Max 100.</p>\n","type":"text/plain"},"key":"entityId","value":"binance,coinbase"},{"disabled":true,"description":{"content":"<p>Optional. Tag categories to filter by. Max 100.</p>\n","type":"text/plain"},"key":"category","value":"DeFi,Social"},{"disabled":true,"description":{"content":"<p>Optional. Sort order: 'time' (asc) or 'rank' (desc). Default 'time'.</p>\n","type":"text/plain"},"key":"orderBy","value":"time"},{"disabled":true,"description":{"content":"<p>Optional. Maximum results to return (1-1000, default 100).</p>\n","type":"text/plain"},"key":"limit","value":"100"},{"disabled":true,"description":{"content":"<p>Optional. Cursor token for pagination (from previous response).</p>\n","type":"text/plain"},"key":"pageToken","value":"eyJkIjoiMjAyNS0wMS0wMVQwMDowMDowMFoiLCJxIjowfQ=="}],"variable":[]}},"response":[{"id":"f59cb078-12ec-4e6f-af36-8f1914f918e1","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/intelligence/address_tags/updates?since=2025-01-01T00:00:00Z","host":["https://api.arkm.com"],"path":["intelligence","address_tags","updates"],"query":[{"key":"since","value":"2025-01-01T00:00:00Z","description":"Optional. Returns changes since this time. Required unless both 'from' and 'to' are provided; mutually exclusive with 'from'/'to'."},{"key":"from","value":"2025-01-01T00:00:00Z","description":"Optional. Start of time window (use with 'to', max 7-day window). Provide together with 'to' as an alternative to 'since'; mutually exclusive with 'since'.","disabled":true},{"key":"to","value":"2025-01-07T00:00:00Z","description":"Optional. End of time window (use with 'from', max 7-day window). Provide together with 'from' as an alternative to 'since'; mutually exclusive with 'since'.","disabled":true},{"key":"status","value":"new","description":"Optional. Filter by change status. For address tags only 'new', 'deleted', and 'all' are valid (no 'updated').","disabled":true},{"key":"chain","value":"ethereum,bsc","description":"Optional. Blockchain networks to filter by.","disabled":true},{"key":"address","value":"0x28C6c06298d514Db089934071355E5743bf21d60","description":"Optional. Blockchain addresses to filter by. Max 100.","disabled":true},{"key":"tagId","value":"early-token-holder,contract-deployer","description":"Optional. Tag IDs to filter by. Max 100.","disabled":true},{"key":"tagParams","value":"Binance","description":"Optional. Filter by tag parameters (JSON string matching tag-specific params).","disabled":true},{"key":"entityId","value":"binance,coinbase","description":"Optional. Entity IDs to filter by. Max 100.","disabled":true},{"key":"category","value":"DeFi,Social","description":"Optional. Tag categories to filter by. Max 100.","disabled":true},{"key":"orderBy","value":"time","description":"Optional. Sort order: 'time' (asc) or 'rank' (desc). Default 'time'.","disabled":true},{"key":"limit","value":"100","description":"Optional. Maximum results to return (1-1000, default 100).","disabled":true},{"key":"pageToken","value":"eyJkIjoiMjAyNS0wMS0wMVQwMDowMDowMFoiLCJxIjowfQ==","description":"Optional. Cursor token for pagination (from previous response).","disabled":true}]},"description":"Returns a feed of address-tag association changes (new tags applied to addresses, removed tags) with cursor-based pagination."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"hasMore\": true,\n  \"items\": [\n    {\n      \"address\": \"0x000000000000000000000000000000000000800A\",\n      \"category\": \"Other\",\n      \"chain\": \"arbitrum_one\",\n      \"diff_seq\": 1,\n      \"diff_ts\": \"2025-01-01T02:52:00Z\",\n      \"rank\": 140,\n      \"status\": \"new\",\n      \"tag_id\": \"arbitrum-one-first-funder\",\n      \"tag_name\": \"Arbitrum One First Funder\",\n      \"tag_params\": \"0x35e14525280193cb71e8204cABafCf10F7e5Dc25\",\n      \"template\": \"Arbitrum One First Funder: %s\"\n    },\n    {\n      \"address\": \"0x000072ba5D51098b904A927ddE54C22aD480B5B5\",\n      \"category\": \"Other\",\n      \"chain\": \"arbitrum_one\",\n      \"diff_seq\": 13,\n      \"diff_ts\": \"2025-01-01T02:52:00Z\",\n      \"entity_id\": \"0xdyno\",\n      \"entity_name\": \"@0xDyno\",\n      \"entity_type\": \"individual\",\n      \"label\": \"494119.eth\",\n      \"rank\": 540,\n      \"status\": \"deleted\",\n      \"tag_id\": \"early-token-holder\",\n      \"tag_name\": \"Early Token Holder\",\n      \"tag_params\": \"GEM\",\n      \"template\": \"Early %s Holder\"\n    }\n  ],\n  \"latest_diff_ts\": \"2025-01-01T02:52:00Z\",\n  \"pageToken\": \"eyJkIjoiMjAyNS0wMS0wMVQwMjo1MjowMFoiLCJxIjoxMDB9\"\n}"}],"_postman_id":"c747561c-49d4-4141-990f-372e1baa9d08"},{"name":"Get address intelligence updates","id":"0db70300-fe48-4b0e-86d2-bd78547a0e96","request":{"method":"GET","header":[],"url":"https://api.arkm.com/intelligence/addresses/updates?since=2025-01-01T00:00:00Z","description":"<p>Returns a feed of address label, entity, and tag changes with cursor-based pagination.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["intelligence","addresses","updates"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Optional. Returns changes since this time. Required unless both 'from' and 'to' are provided; mutually exclusive with 'from'/'to'.</p>\n","type":"text/plain"},"key":"since","value":"2025-01-01T00:00:00Z"},{"disabled":true,"description":{"content":"<p>Optional. Start of time window (use with 'to', max 7-day window). Provide together with 'to' as an alternative to 'since'; mutually exclusive with 'since'.</p>\n","type":"text/plain"},"key":"from","value":"2025-01-01T00:00:00Z"},{"disabled":true,"description":{"content":"<p>Optional. End of time window (use with 'from', max 7-day window). Provide together with 'from' as an alternative to 'since'; mutually exclusive with 'since'.</p>\n","type":"text/plain"},"key":"to","value":"2025-01-07T00:00:00Z"},{"disabled":true,"description":{"content":"<p>Optional. Filter by change status.</p>\n","type":"text/plain"},"key":"status","value":"new"},{"disabled":true,"description":{"content":"<p>Optional. Blockchain addresses to filter by. Max 100.</p>\n","type":"text/plain"},"key":"address","value":"0x28C6c06298d514Db089934071355E5743bf21d60"},{"disabled":true,"description":{"content":"<p>Optional. Blockchain networks to filter by.</p>\n","type":"text/plain"},"key":"chain","value":"ethereum,bsc"},{"disabled":true,"description":{"content":"<p>Optional. Entity IDs to filter by. Max 100.</p>\n","type":"text/plain"},"key":"entityId","value":"binance,coinbase"},{"disabled":true,"description":{"content":"<p>Optional. Entity types to filter by. Max 100.</p>\n","type":"text/plain"},"key":"entityType","value":"cex,dex,fund"},{"disabled":true,"description":{"content":"<p>Optional. Filter by address label.</p>\n","type":"text/plain"},"key":"label","value":"Cold Wallet"},{"disabled":true,"description":{"content":"<p>Optional. Filter by service addresses.</p>\n","type":"text/plain"},"key":"service","value":"true"},{"disabled":true,"description":{"content":"<p>Optional. Deposit exchange entity IDs to filter by. Max 100.</p>\n","type":"text/plain"},"key":"depositExchangeId","value":"binance,coinbase"},{"disabled":true,"description":{"content":"<p>Optional. Tag IDs to filter by. Max 100.</p>\n","type":"text/plain"},"key":"tagId","value":"gnosis-safe-signer,contract-deployer"},{"disabled":true,"description":{"content":"<p>Optional. Filter by tag parameters (JSON string matching tag-specific params).</p>\n","type":"text/plain"},"key":"tagParams","value":"Binance"},{"disabled":true,"description":{"content":"<p>Optional. Sort order: 'time' (asc), 'balance', 'volume', or 'transfers' (desc). Default 'time'.</p>\n","type":"text/plain"},"key":"orderBy","value":"time"},{"disabled":true,"description":{"content":"<p>Optional. Maximum results to return (1-1000, default 100).</p>\n","type":"text/plain"},"key":"limit","value":"100"},{"disabled":true,"description":{"content":"<p>Optional. Whether to include address tags in the response. Defaults to true.</p>\n","type":"text/plain"},"key":"includeTags","value":"true"},{"disabled":true,"description":{"content":"<p>Optional. Whether to include entity predictions in the response. Defaults to true.</p>\n","type":"text/plain"},"key":"includeEntityPredictions","value":"true"},{"disabled":true,"description":{"content":"<p>Optional. Whether to include cluster data in the response. Defaults to true.</p>\n","type":"text/plain"},"key":"includeClusters","value":"true"},{"disabled":true,"description":{"content":"<p>Optional. Cursor token for pagination (from previous response).</p>\n","type":"text/plain"},"key":"pageToken","value":"eyJkIjoiMjAyNS0wMS0wMVQwMDowMDowMFoiLCJxIjowfQ=="}],"variable":[]}},"response":[{"id":"f5695b05-dbdb-42bb-99ea-567c0722b973","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/intelligence/addresses/updates?since=2025-01-01T00:00:00Z","host":["https://api.arkm.com"],"path":["intelligence","addresses","updates"],"query":[{"key":"since","value":"2025-01-01T00:00:00Z","description":"Optional. Returns changes since this time. Required unless both 'from' and 'to' are provided; mutually exclusive with 'from'/'to'."},{"key":"from","value":"2025-01-01T00:00:00Z","description":"Optional. Start of time window (use with 'to', max 7-day window). Provide together with 'to' as an alternative to 'since'; mutually exclusive with 'since'.","disabled":true},{"key":"to","value":"2025-01-07T00:00:00Z","description":"Optional. End of time window (use with 'from', max 7-day window). Provide together with 'from' as an alternative to 'since'; mutually exclusive with 'since'.","disabled":true},{"key":"status","value":"new","description":"Optional. Filter by change status.","disabled":true},{"key":"address","value":"0x28C6c06298d514Db089934071355E5743bf21d60","description":"Optional. Blockchain addresses to filter by. Max 100.","disabled":true},{"key":"chain","value":"ethereum,bsc","description":"Optional. Blockchain networks to filter by.","disabled":true},{"key":"entityId","value":"binance,coinbase","description":"Optional. Entity IDs to filter by. Max 100.","disabled":true},{"key":"entityType","value":"cex,dex,fund","description":"Optional. Entity types to filter by. Max 100.","disabled":true},{"key":"label","value":"Cold Wallet","description":"Optional. Filter by address label.","disabled":true},{"key":"service","value":"true","description":"Optional. Filter by service addresses.","disabled":true},{"key":"depositExchangeId","value":"binance,coinbase","description":"Optional. Deposit exchange entity IDs to filter by. Max 100.","disabled":true},{"key":"tagId","value":"gnosis-safe-signer,contract-deployer","description":"Optional. Tag IDs to filter by. Max 100.","disabled":true},{"key":"tagParams","value":"Binance","description":"Optional. Filter by tag parameters (JSON string matching tag-specific params).","disabled":true},{"key":"orderBy","value":"time","description":"Optional. Sort order: 'time' (asc), 'balance', 'volume', or 'transfers' (desc). Default 'time'.","disabled":true},{"key":"limit","value":"100","description":"Optional. Maximum results to return (1-1000, default 100).","disabled":true},{"key":"includeTags","value":"true","description":"Optional. Whether to include address tags in the response. Defaults to true.","disabled":true},{"key":"includeEntityPredictions","value":"true","description":"Optional. Whether to include entity predictions in the response. Defaults to true.","disabled":true},{"key":"includeClusters","value":"true","description":"Optional. Whether to include cluster data in the response. Defaults to true.","disabled":true},{"key":"pageToken","value":"eyJkIjoiMjAyNS0wMS0wMVQwMDowMDowMFoiLCJxIjowfQ==","description":"Optional. Cursor token for pagination (from previous response).","disabled":true}]},"description":"Returns a feed of address label, entity, and tag changes with cursor-based pagination."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"hasMore\": true,\n  \"items\": [\n    {\n      \"address\": \"0x000000000000012DeF132E61759048bE5b5C6033\",\n      \"chain\": \"arbitrum_one\",\n      \"deposit_exchange_id\": null,\n      \"diff_seq\": 1,\n      \"diff_ts\": \"2025-01-01T00:00:00Z\",\n      \"entity_id\": null,\n      \"entity_name\": null,\n      \"entity_type\": null,\n      \"label\": \"Cortex (CX)\",\n      \"populated_tags\": [\n        {\n          \"chain\": \"arbitrum_one\",\n          \"disablePage\": true,\n          \"excludeEntities\": true,\n          \"id\": \"token-label\",\n          \"label\": \"%s\",\n          \"rank\": 380,\n          \"tagParams\": \"Cortex (CX)\"\n        },\n        {\n          \"chain\": \"arbitrum_one\",\n          \"disablePage\": true,\n          \"excludeEntities\": true,\n          \"id\": \"token-standard\",\n          \"label\": \"%s Token\",\n          \"rank\": 300,\n          \"tagParams\": \"ERC20\"\n        }\n      ],\n      \"service\": false,\n      \"status\": \"new\"\n    },\n    {\n      \"address\": \"0x000BAE686D6f10C9715593bD9d06cc03E7529c18\",\n      \"chain\": \"arbitrum_one\",\n      \"deposit_exchange_id\": null,\n      \"diff_seq\": 39,\n      \"diff_ts\": \"2025-01-01T00:00:00Z\",\n      \"entity_id\": \"uniswap\",\n      \"entity_name\": \"Uniswap\",\n      \"entity_type\": \"dex\",\n      \"label\": \"V3 Pool\",\n      \"populated_tags\": [\n        {\n          \"chain\": \"arbitrum_one\",\n          \"disablePage\": false,\n          \"excludeEntities\": false,\n          \"id\": \"dex\",\n          \"label\": \"Decentralized Exchange\",\n          \"rank\": 50\n        }\n      ],\n      \"service\": false,\n      \"status\": \"new\"\n    }\n  ],\n  \"latest_diff_ts\": \"2025-01-01T00:00:00Z\",\n  \"pageToken\": \"eyJkIjoiMjAyNS0wMS0wMVQwMDowMDowMFoiLCJxIjoxMDB9\"\n}"}],"_postman_id":"0db70300-fe48-4b0e-86d2-bd78547a0e96"},{"name":"Get intelligence about a contract","id":"af90facb-fddf-4902-9222-d331a106cce2","request":{"method":"GET","header":[],"url":"https://api.arkm.com/intelligence/contract/:chain/:address","description":"<p>Returns contract metadata for the specified chain and address, including deployer information, proxy status, and block timestamp. Returns 404 if no contract is found at the given chain and address.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["intelligence","contract",":chain",":address"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"5d909c98-387b-41a0-b1fa-520939c9a54a","description":{"content":"<p>Required. Blockchain network where the contract is deployed.</p>\n","type":"text/plain"},"type":"any","value":"ethereum","key":"chain"},{"id":"009d97aa-d8b4-4117-9da8-f98d8838c0d9","description":{"content":"<p>Required. The contract address to query.</p>\n","type":"text/plain"},"type":"any","value":"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","key":"address"}]}},"response":[{"id":"0e58e276-510a-45d7-a38c-25236349afc8","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/intelligence/contract/:chain/:address","host":["https://api.arkm.com"],"path":["intelligence","contract",":chain",":address"],"variable":[{"key":"chain","value":"ethereum","description":"Required. Blockchain network where the contract is deployed."},{"key":"address","value":"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","description":"Required. The contract address to query."}]},"description":"Returns contract metadata for the specified chain and address, including deployer information, proxy status, and block timestamp. Returns 404 if no contract is found at the given chain and address."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"address\": \"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48\",\n  \"blockTimestamp\": \"2018-08-03T19:28:24Z\",\n  \"bytecode\": \"\",\n  \"deployer\": {\n    \"address\": \"0x95Ba4cF87D6723ad9C0Db21737D862bE80e93911\",\n    \"arkhamEntity\": {\n      \"crunchbase\": \"https://www.crunchbase.com/organization/circle-2\",\n      \"id\": \"circle\",\n      \"linkedin\": \"https://www.linkedin.com/company/circle-internet-financial\",\n      \"name\": \"Circle\",\n      \"note\": \"\",\n      \"service\": null,\n      \"twitter\": \"https://twitter.com/circle\",\n      \"type\": \"stablecoin\",\n      \"website\": \"https://circle.com\"\n    },\n    \"arkhamLabel\": {\n      \"address\": \"0x95Ba4cF87D6723ad9C0Db21737D862bE80e93911\",\n      \"chainType\": \"evm\",\n      \"name\": \"Deployer\"\n    },\n    \"chain\": \"ethereum\",\n    \"contract\": false,\n    \"isUserAddress\": false\n  },\n  \"functionSighashes\": null,\n  \"internalDeployer\": {\n    \"address\": \"0x95Ba4cF87D6723ad9C0Db21737D862bE80e93911\",\n    \"arkhamEntity\": {\n      \"crunchbase\": \"https://www.crunchbase.com/organization/circle-2\",\n      \"id\": \"circle\",\n      \"linkedin\": \"https://www.linkedin.com/company/circle-internet-financial\",\n      \"name\": \"Circle\",\n      \"note\": \"\",\n      \"service\": null,\n      \"twitter\": \"https://twitter.com/circle\",\n      \"type\": \"stablecoin\",\n      \"website\": \"https://circle.com\"\n    },\n    \"arkhamLabel\": {\n      \"address\": \"0x95Ba4cF87D6723ad9C0Db21737D862bE80e93911\",\n      \"chainType\": \"evm\",\n      \"name\": \"Deployer\"\n    },\n    \"chain\": \"ethereum\",\n    \"contract\": false,\n    \"isUserAddress\": false\n  },\n  \"isProxy\": true,\n  \"proxyAddress\": \"0xa2327a938Febf5FEC13baCFb16Ae10EcBc4cbDCF\",\n  \"transactionHash\": \"0xe7e0fe390354509cd08c9a0168536938600ddc552b3f7cb96030ebef62e75895\"\n}"}],"_postman_id":"af90facb-fddf-4902-9222-d331a106cce2"},{"name":"Get entity intelligence updates","id":"6cc4e586-0fb0-429b-9b3d-88c97e54e6cf","request":{"method":"GET","header":[],"url":"https://api.arkm.com/intelligence/entities/updates?since=2025-01-01T00:00:00Z","description":"<p>Returns a feed of entity changes (new entities, name updates, type changes, deletions) with cursor-based pagination.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["intelligence","entities","updates"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Optional. Returns changes since this time. Required unless both 'from' and 'to' are provided; mutually exclusive with 'from'/'to'.</p>\n","type":"text/plain"},"key":"since","value":"2025-01-01T00:00:00Z"},{"disabled":true,"description":{"content":"<p>Optional. Start of time window (use with 'to', max 7-day window). Provide together with 'to' as an alternative to 'since'; mutually exclusive with 'since'.</p>\n","type":"text/plain"},"key":"from","value":"2025-01-01T00:00:00Z"},{"disabled":true,"description":{"content":"<p>Optional. End of time window (use with 'from', max 7-day window). Provide together with 'from' as an alternative to 'since'; mutually exclusive with 'since'.</p>\n","type":"text/plain"},"key":"to","value":"2025-01-07T00:00:00Z"},{"disabled":true,"description":{"content":"<p>Optional. Filter by change status.</p>\n","type":"text/plain"},"key":"status","value":"new"},{"disabled":true,"description":{"content":"<p>Optional. Entity IDs to filter by. Max 100.</p>\n","type":"text/plain"},"key":"entityId","value":"binance,coinbase"},{"disabled":true,"description":{"content":"<p>Optional. Entity types to filter by. Max 100.</p>\n","type":"text/plain"},"key":"entityType","value":"cex,dex,fund"},{"disabled":true,"description":{"content":"<p>Optional. Sort order: 'time' (asc), 'balance', 'volume', or 'addressCount' (desc). Default 'time'.</p>\n","type":"text/plain"},"key":"orderBy","value":"time"},{"disabled":true,"description":{"content":"<p>Optional. Maximum results to return (1-1000, default 100).</p>\n","type":"text/plain"},"key":"limit","value":"100"},{"disabled":true,"description":{"content":"<p>Optional. Cursor token for pagination (from previous response).</p>\n","type":"text/plain"},"key":"pageToken","value":"eyJkIjoiMjAyNS0wMS0wMVQwMDowMDowMFoiLCJxIjowfQ=="}],"variable":[]}},"response":[{"id":"fa5db14a-8b20-48e7-b1d2-33514327580f","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/intelligence/entities/updates?since=2025-01-01T00:00:00Z","host":["https://api.arkm.com"],"path":["intelligence","entities","updates"],"query":[{"key":"since","value":"2025-01-01T00:00:00Z","description":"Optional. Returns changes since this time. Required unless both 'from' and 'to' are provided; mutually exclusive with 'from'/'to'."},{"key":"from","value":"2025-01-01T00:00:00Z","description":"Optional. Start of time window (use with 'to', max 7-day window). Provide together with 'to' as an alternative to 'since'; mutually exclusive with 'since'.","disabled":true},{"key":"to","value":"2025-01-07T00:00:00Z","description":"Optional. End of time window (use with 'from', max 7-day window). Provide together with 'from' as an alternative to 'since'; mutually exclusive with 'since'.","disabled":true},{"key":"status","value":"new","description":"Optional. Filter by change status.","disabled":true},{"key":"entityId","value":"binance,coinbase","description":"Optional. Entity IDs to filter by. Max 100.","disabled":true},{"key":"entityType","value":"cex,dex,fund","description":"Optional. Entity types to filter by. Max 100.","disabled":true},{"key":"orderBy","value":"time","description":"Optional. Sort order: 'time' (asc), 'balance', 'volume', or 'addressCount' (desc). Default 'time'.","disabled":true},{"key":"limit","value":"100","description":"Optional. Maximum results to return (1-1000, default 100).","disabled":true},{"key":"pageToken","value":"eyJkIjoiMjAyNS0wMS0wMVQwMDowMDowMFoiLCJxIjowfQ==","description":"Optional. Cursor token for pagination (from previous response).","disabled":true}]},"description":"Returns a feed of entity changes (new entities, name updates, type changes, deletions) with cursor-based pagination."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"hasMore\": true,\n  \"items\": [\n    {\n      \"diff_seq\": 1,\n      \"diff_ts\": \"2025-01-01T03:31:00Z\",\n      \"id\": \"blockchain-bandit\",\n      \"metrics\": {\n        \"address_count\": 15,\n        \"balance_usd\": 99992288.08999999,\n        \"first_tx\": \"2016-02-14T15:59:14Z\",\n        \"last_tx\": \"2026-02-06T19:37:41Z\",\n        \"volume_usd\": 528350643.2299999\n      },\n      \"name\": \"Blockchain Bandit\",\n      \"status\": \"new\",\n      \"type\": \"hacker\"\n    },\n    {\n      \"diff_seq\": 1,\n      \"diff_ts\": \"2025-01-07T04:12:00Z\",\n      \"id\": \"cryptex-net\",\n      \"linkedin_url\": \"https://www.linkedin.com/company/cryptexnet/about\",\n      \"metrics\": {\n        \"address_count\": 2096,\n        \"balance_usd\": 5078693.820000242,\n        \"first_tx\": \"2018-04-17T19:34:08Z\",\n        \"last_tx\": \"2026-02-12T16:10:36Z\",\n        \"volume_usd\": 4594517787.85998\n      },\n      \"name\": \"Cryptex\",\n      \"status\": \"new\",\n      \"twitter_url\": \"https://x.com/cryptex_net\",\n      \"type\": \"cex\",\n      \"website_url\": \"https://cryptex.net\"\n    }\n  ],\n  \"latest_diff_ts\": \"2025-01-14T03:34:00Z\",\n  \"pageToken\": \"eyJkIjoiMjAyNS0wMS0xNFQwMzozNDowMFoiLCJxIjo5MH0=\"\n}"}],"_postman_id":"6cc4e586-0fb0-429b-9b3d-88c97e54e6cf"},{"name":"Get intelligence about an entity","id":"f94a8b70-9918-4851-8c03-5bce43610690","request":{"method":"GET","header":[],"url":"https://api.arkm.com/intelligence/entity/:entity","description":"<p>Returns top-level entity information, including associated tags, social links, and metadata.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["intelligence","entity",":entity"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"8927131a-34e4-4cc7-99e0-e3994987a165","description":{"content":"<p>Required. The entity ID to query.</p>\n","type":"text/plain"},"type":"any","value":"binance","key":"entity"}]}},"response":[{"id":"48f18ca3-bd36-49ea-a672-164092f02168","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/intelligence/entity/:entity","host":["https://api.arkm.com"],"path":["intelligence","entity",":entity"],"variable":[{"key":"entity","value":"binance","description":"Required. The entity ID to query."}]},"description":"Returns top-level entity information, including associated tags, social links, and metadata."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n  \"customized\": false,\n  \"id\": \"binance\",\n  \"linkedin\": \"https://www.linkedin.com/company/binance\",\n  \"name\": \"Binance\",\n  \"note\": \"\",\n  \"populatedTags\": [\n    {\n      \"disablePage\": false,\n      \"excludeEntities\": false,\n      \"id\": \"proof-of-reserves\",\n      \"label\": \"Binance Proof of Reserves\",\n      \"rank\": 20,\n      \"tagParams\": \"Binance\"\n    }\n  ],\n  \"service\": null,\n  \"twitter\": \"https://twitter.com/binance\",\n  \"type\": \"cex\",\n  \"website\": \"https://binance.com\"\n}"}],"_postman_id":"f94a8b70-9918-4851-8c03-5bce43610690"},{"name":"Get entity summary statistics","id":"4e5f522d-1749-4a9e-84d9-9077c9b85d8f","request":{"method":"GET","header":[],"url":"https://api.arkm.com/intelligence/entity/:entity/summary","description":"<p>Returns summary statistics for the specified entity, including:</p>\n<ul>\n<li>Total number of unique addresses (deduplicated across chains)</li>\n<li>Total balance in USD across all chains</li>\n<li>Total transfer volume in USD</li>\n<li>First and last transfer timestamps</li>\n</ul>\n<p>Supports Arkham entities and user-created entities. When authenticated, user-added addresses are included for Arkham entities.</p>\n<p><strong>Shareable user entities:</strong> If a user entity is marked as shareable, any authenticated or unauthenticated user can access the summary.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["intelligence","entity",":entity","summary"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"7523f284-eb1e-4863-966a-601a35f9788a","description":{"content":"<p>Required. The entity ID to retrieve summary statistics for.</p>\n","type":"text/plain"},"type":"any","value":"binance","key":"entity"}]}},"response":[{"id":"cb8a7213-0dd5-4f7b-a386-50e42af293e5","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/intelligence/entity/:entity/summary","host":["https://api.arkm.com"],"path":["intelligence","entity",":entity","summary"],"variable":[{"key":"entity","value":"binance","description":"Required. The entity ID to retrieve summary statistics for."}]},"description":"Returns summary statistics for the specified entity, including:\n- Total number of unique addresses (deduplicated across chains)\n- Total balance in USD across all chains\n- Total transfer volume in USD\n- First and last transfer timestamps\n\nSupports Arkham entities and user-created entities. When authenticated, user-added addresses are included for Arkham entities.\n\n**Shareable user entities:** If a user entity is marked as shareable, any authenticated or unauthenticated user can access the summary."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"balanceUsd\": 237610738754.25,\n  \"entityId\": \"binance\",\n  \"firstTx\": \"2017-06-19T06:17:43Z\",\n  \"lastTx\": \"2026-06-19T00:58:41Z\",\n  \"numAddresses\": 63893485,\n  \"volumeUsd\": 48418640768311.48\n}"}],"_postman_id":"4e5f522d-1749-4a9e-84d9-9077c9b85d8f"},{"name":"Get entity balance changes","id":"4def0c5b-3dc9-4d53-b1e5-06040fed4d84","request":{"method":"GET","header":[],"url":"https://api.arkm.com/intelligence/entity_balance_changes?orderBy=balanceUsd&orderDir=asc&interval=7d&limit=10","description":"<p>Returns a ranked list of entities with their balance changes over a specified time interval. Filter by chain, entity type, token, and balance thresholds. Useful for tracking which entities are accumulating or distributing assets.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["intelligence","entity_balance_changes"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Required. Field to sort results by. One of: balanceUsd, balanceUsdChange, balanceUsdPctChange, balanceUnit, balanceUnitChange, balanceUnitPctChange.</p>\n","type":"text/plain"},"key":"orderBy","value":"balanceUsd"},{"description":{"content":"<p>Required. Sort direction: 'asc' for ascending or 'desc' for descending.</p>\n","type":"text/plain"},"key":"orderDir","value":"asc"},{"description":{"content":"<p>Required. Time interval for balance change calculation. One of '7d', '14d', or '30d'.</p>\n","type":"text/plain"},"key":"interval","value":"7d"},{"disabled":true,"description":{"content":"<p>Optional. List of chains to filter by.</p>\n","type":"text/plain"},"key":"chains","value":"ethereum"},{"disabled":true,"description":{"content":"<p>Optional. List of entity types to filter by.</p>\n","type":"text/plain"},"key":"entityTypes","value":"cex,fund"},{"disabled":true,"description":{"content":"<p>Optional. List of specific entity IDs to filter by.</p>\n","type":"text/plain"},"key":"entityIds","value":"binance,coinbase"},{"disabled":true,"description":{"content":"<p>Optional. List of entity tags to include. Requires elevated access; requests using this parameter without it may return 403.</p>\n","type":"text/plain"},"key":"entityTags","value":"hot-wallet,kol"},{"disabled":true,"description":{"content":"<p>Optional. List of entity tags to exclude. Requires elevated access; requests using this parameter without it may return 403.</p>\n","type":"text/plain"},"key":"negatedEntityTags","value":"hot-wallet,kol"},{"disabled":true,"description":{"content":"<p>Optional. List of CoinGecko pricing IDs to filter by.</p>\n","type":"text/plain"},"key":"pricingIds","value":"bitcoin,ethereum"},{"disabled":true,"description":{"content":"<p>Optional. Minimum balance threshold in USD to filter entities.</p>\n","type":"text/plain"},"key":"balanceMin","value":"1"},{"disabled":true,"description":{"content":"<p>Optional. Maximum balance threshold in USD to filter entities.</p>\n","type":"text/plain"},"key":"balanceMax","value":"1"},{"description":{"content":"<p>Required. Number of results to return per page. Required; must be between 1 and 100.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"disabled":true,"description":{"content":"<p>Optional. Number of results to skip from the beginning.</p>\n","type":"text/plain"},"key":"offset","value":"1"}],"variable":[]}},"response":[{"id":"f92e56e6-0157-4145-8fbe-5fed2fbf7940","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/intelligence/entity_balance_changes?orderBy=balanceUsd&orderDir=asc&interval=7d&limit=10","host":["https://api.arkm.com"],"path":["intelligence","entity_balance_changes"],"query":[{"key":"orderBy","value":"balanceUsd","description":"Required. Field to sort results by. One of: balanceUsd, balanceUsdChange, balanceUsdPctChange, balanceUnit, balanceUnitChange, balanceUnitPctChange."},{"key":"orderDir","value":"asc","description":"Required. Sort direction: 'asc' for ascending or 'desc' for descending."},{"key":"interval","value":"7d","description":"Required. Time interval for balance change calculation. One of '7d', '14d', or '30d'."},{"key":"chains","value":"ethereum","description":"Optional. List of chains to filter by.","disabled":true},{"key":"entityTypes","value":"cex,fund","description":"Optional. List of entity types to filter by.","disabled":true},{"key":"entityIds","value":"binance,coinbase","description":"Optional. List of specific entity IDs to filter by.","disabled":true},{"key":"entityTags","value":"hot-wallet,kol","description":"Optional. List of entity tags to include. Requires elevated access; requests using this parameter without it may return 403.","disabled":true},{"key":"negatedEntityTags","value":"hot-wallet,kol","description":"Optional. List of entity tags to exclude. Requires elevated access; requests using this parameter without it may return 403.","disabled":true},{"key":"pricingIds","value":"bitcoin,ethereum","description":"Optional. List of CoinGecko pricing IDs to filter by.","disabled":true},{"key":"balanceMin","value":"1","description":"Optional. Minimum balance threshold in USD to filter entities.","disabled":true},{"key":"balanceMax","value":"1","description":"Optional. Maximum balance threshold in USD to filter entities.","disabled":true},{"key":"limit","value":"10","description":"Required. Number of results to return per page. Required; must be between 1 and 100."},{"key":"offset","value":"1","description":"Optional. Number of results to skip from the beginning.","disabled":true}]},"description":"Returns a ranked list of entities with their balance changes over a specified time interval. Filter by chain, entity type, token, and balance thresholds. Useful for tracking which entities are accumulating or distributing assets."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"balanceUnit\": 2.588710860077077e+30,\n    \"balanceUsd\": 128882055209.18153,\n    \"entityId\": \"binance\",\n    \"entityName\": \"Binance\",\n    \"entityType\": \"cex\",\n    \"prevBalanceUnit\": 2.588710860077077e+30,\n    \"prevBalanceUsd\": 128959949999.75998,\n    \"tokenBalances\": [\n      {\n        \"balanceUnit\": 665902.74090254,\n        \"balanceUsd\": 42777592075.57917,\n        \"prevBalanceUnit\": 671251.50395595,\n        \"prevBalanceUsd\": 43238665627.32252,\n        \"tokenId\": \"bitcoin\",\n        \"tokenSymbol\": \"btc\"\n      },\n      {\n        \"balanceUnit\": 4073033.238123183,\n        \"balanceUsd\": 7084063789.738129,\n        \"prevBalanceUnit\": 3964473.476386405,\n        \"prevBalanceUsd\": 6660434374.533453,\n        \"tokenId\": \"ethereum\",\n        \"tokenSymbol\": \"eth\"\n      }\n    ]\n  }\n]"}],"_postman_id":"4def0c5b-3dc9-4d53-b1e5-06040fed4d84"},{"name":"Get predictions for an entity","id":"7ca01bc4-9894-4e94-974f-74641b141a78","request":{"method":"GET","header":[],"url":"https://api.arkm.com/intelligence/entity_predictions/:entity","description":"<p>Returns predicted addresses for the specified entity. These predictions are generated using machine learning algorithms to identify addresses that may belong to the entity based on transaction patterns and other blockchain data. Returns up to 1000 predictions per entity, sorted by USD balance.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["intelligence","entity_predictions",":entity"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"a52e490b-b98f-4177-8f74-98af33bb622a","description":{"content":"<p>Required. The entity ID to retrieve address predictions for.</p>\n","type":"text/plain"},"type":"any","value":"binance","key":"entity"}]}},"response":[{"id":"48ce9909-87eb-4617-9e09-acbac1f07870","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/intelligence/entity_predictions/:entity","host":["https://api.arkm.com"],"path":["intelligence","entity_predictions",":entity"],"variable":[{"key":"entity","value":"binance","description":"Required. The entity ID to retrieve address predictions for."}]},"description":"Returns predicted addresses for the specified entity. These predictions are generated using machine learning algorithms to identify addresses that may belong to the entity based on transaction patterns and other blockchain data. Returns up to 1000 predictions per entity, sorted by USD balance."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n    \"entityID\": \"binance\",\n    \"usdBalance\": 938079658.6\n  }\n]"}],"_postman_id":"7ca01bc4-9894-4e94-974f-74641b141a78"},{"name":"Get all entity types","id":"f319d217-3614-413e-b823-bcf83b66b96a","request":{"method":"GET","header":[],"url":"https://api.arkm.com/intelligence/entity_types","description":"<p>Returns the list of all entity type classifications (e.g., 'cex', 'dex', 'fund', 'individual'). Use these values to filter other intelligence endpoints by entity type.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["intelligence","entity_types"],"host":["https://api.arkm.com"],"query":[],"variable":[]}},"response":[{"id":"d8dce88f-3da4-4d8f-b2d4-ff1a19b28e65","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.arkm.com/intelligence/entity_types","description":"Returns the list of all entity type classifications (e.g., 'cex', 'dex', 'fund', 'individual'). Use these values to filter other intelligence endpoints by entity type."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  \"gaming\",\n  \"derivatives\",\n  \"misc\",\n  \"nft-marketplace\",\n  \"hacker\",\n  \"dex\",\n  \"defi\",\n  \"crosschain-interoperability\",\n  \"privacy\",\n  \"meme\",\n  \"smart-contract-platform\",\n  \"charity\",\n  \"blockchain-infra\",\n  \"bridge\",\n  \"real-world-assets\",\n  \"launchpad\",\n  \"fund-decentralized\",\n  \"miner-validator\",\n  \"faucet\",\n  \"oracle\",\n  \"blockchain-infrastructure\",\n  \"dao\",\n  \"insurance\",\n  \"staking\",\n  \"ai\",\n  \"mixer\",\n  \"blockchain-scaling\",\n  \"individual\",\n  \"fund\",\n  \"prediction-market\",\n  \"ponzi\",\n  \"social\",\n  \"dex-aggregator\",\n  \"scam\",\n  \"validator\",\n  \"liquid-staking\",\n  \"yield\",\n  \"custodian\",\n  \"government\",\n  \"lending-centralized\",\n  \"cex\",\n  \"mev\",\n  \"darkweb\",\n  \"lending-decentralized\",\n  \"cdp\",\n  \"wallet\",\n  \"otc\",\n  \"ransomware\",\n  \"gambling\",\n  \"stablecoin\",\n  \"nft\"\n]"}],"_postman_id":"f319d217-3614-413e-b823-bcf83b66b96a"},{"name":"Search addresses, entities, tokens, and pools","id":"fccf04f2-20bd-4013-a8da-dbfa63e6aa0b","request":{"method":"GET","header":[],"url":"https://api.arkm.com/intelligence/search?query=binance","description":"<p>Full-text search across addresses, entities, tokens, and Solana pools. Returns matching results ranked by relevance.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["intelligence","search"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Optional. Search query string to match against entities, addresses, tokens, pools, ENS names, and more. An empty query returns no results.</p>\n","type":"text/plain"},"key":"query","value":"binance"},{"disabled":true,"description":{"content":"<p>Optional. Max Arkham-curated entities to return (0–50, default 5).</p>\n","type":"text/plain"},"key":"arkhamEntities","value":"1"},{"disabled":true,"description":{"content":"<p>Optional. Max Arkham-curated addresses with labels to return (0–50, default 5).</p>\n","type":"text/plain"},"key":"arkhamAddresses","value":"1"},{"disabled":true,"description":{"content":"<p>Optional. Max user-defined entities to return (0–50, default 5). Requires authentication.</p>\n","type":"text/plain"},"key":"userEntities","value":"1"},{"disabled":true,"description":{"content":"<p>Optional. Max user-defined addresses with labels to return (0–50, default 5). Requires authentication.</p>\n","type":"text/plain"},"key":"userAddresses","value":"1"},{"disabled":true,"description":{"content":"<p>Optional. Max ENS primary names to return (0–50, default 5).</p>\n","type":"text/plain"},"key":"ens","value":"1"},{"disabled":true,"description":{"content":"<p>Optional. Max entity-type matches to return (0–50, default 5).</p>\n","type":"text/plain"},"key":"types","value":"1"},{"disabled":true,"description":{"content":"<p>Optional. Max CEX/VASP entities to return (0–50, default 5).</p>\n","type":"text/plain"},"key":"services","value":"1"},{"disabled":true,"description":{"content":"<p>Optional. Max Twitter-handle matches to return (0–50, default 5).</p>\n","type":"text/plain"},"key":"twitter","value":"1"},{"disabled":true,"description":{"content":"<p>Optional. Max OpenSea usernames to return (0–50, default 5).</p>\n","type":"text/plain"},"key":"opensea","value":"1"},{"disabled":true,"description":{"content":"<p>Optional. Max tokens to return (0–50, default 5).</p>\n","type":"text/plain"},"key":"tokens","value":"1"},{"disabled":true,"description":{"content":"<p>Optional. Max Solana pools to return (0–50, default 5).</p>\n","type":"text/plain"},"key":"pools","value":"1"},{"disabled":true,"description":{"content":"<p>Optional. Max tag matches to return (0–50, default 0).</p>\n","type":"text/plain"},"key":"tags","value":"1"},{"disabled":true,"description":{"content":"<p>Optional. Max Polymarket prediction events to return (0–50, default 0). Also enables the predictions-wallet match for address queries.</p>\n","type":"text/plain"},"key":"polymarketEvents","value":"1"},{"disabled":true,"description":{"content":"<p>Optional. Skip the first N Arkham entities (0–500, default 0).</p>\n","type":"text/plain"},"key":"arkhamEntitiesOffset","value":"1"},{"disabled":true,"description":{"content":"<p>Optional. Skip the first N Arkham addresses with labels (0–500, default 0).</p>\n","type":"text/plain"},"key":"arkhamAddressesOffset","value":"1"},{"disabled":true,"description":{"content":"<p>Optional. Skip the first N user entities (0–500, default 0).</p>\n","type":"text/plain"},"key":"userEntitiesOffset","value":"1"},{"disabled":true,"description":{"content":"<p>Optional. Skip the first N user addresses with labels (0–500, default 0).</p>\n","type":"text/plain"},"key":"userAddressesOffset","value":"1"},{"disabled":true,"description":{"content":"<p>Optional. Skip the first N ENS names (0–500, default 0).</p>\n","type":"text/plain"},"key":"ensOffset","value":"1"},{"disabled":true,"description":{"content":"<p>Optional. Skip the first N entity-type matches (0–500, default 0).</p>\n","type":"text/plain"},"key":"typesOffset","value":"1"},{"disabled":true,"description":{"content":"<p>Optional. Skip the first N CEX/VASP entities (0–500, default 0).</p>\n","type":"text/plain"},"key":"servicesOffset","value":"1"},{"disabled":true,"description":{"content":"<p>Optional. Skip the first N Twitter matches (0–500, default 0).</p>\n","type":"text/plain"},"key":"twitterOffset","value":"1"},{"disabled":true,"description":{"content":"<p>Optional. Skip the first N OpenSea usernames (0–500, default 0).</p>\n","type":"text/plain"},"key":"openseaOffset","value":"1"},{"disabled":true,"description":{"content":"<p>Optional. Skip the first N tokens (0–500, default 0).</p>\n","type":"text/plain"},"key":"tokensOffset","value":"1"},{"disabled":true,"description":{"content":"<p>Optional. Skip the first N pools (0–500, default 0).</p>\n","type":"text/plain"},"key":"poolsOffset","value":"1"},{"disabled":true,"description":{"content":"<p>Optional. Skip the first N tag matches (0–500, default 0).</p>\n","type":"text/plain"},"key":"tagsOffset","value":"1"},{"disabled":true,"description":{"content":"<p>Optional. (Legacy. Prefer flat parameters such as arkhamAddresses=50.) URL-encoded JSON object specifying maximum results per category. Each value is capped at 50; defaults to 5 per category. Flat parameters, when provided, override values in this object.</p>\n","type":"text/plain"},"key":"filterLimits","value":"%7B%22arkhamAddresses%22%3A5%2C%22arkhamEntities%22%3A5%2C%22ens%22%3A5%2C%22opensea%22%3A5%2C%22polymarketEvents%22%3A5%2C%22pools%22%3A5%2C%22services%22%3A5%2C%22tags%22%3A0%2C%22tokens%22%3A10%2C%22twitter%22%3A5%2C%22types%22%3A5%2C%22userAddresses%22%3A5%2C%22userEntities%22%3A5%7D"},{"disabled":true,"description":{"content":"<p>Optional. (Legacy. Prefer flat parameters such as arkhamAddressesOffset=10.) URL-encoded JSON object specifying pagination offset per category. Each value is capped at 500; defaults to 0 per category. Flat parameters, when provided, override values in this object.</p>\n","type":"text/plain"},"key":"filterOffsets","value":"%7B%22arkhamAddresses%22%3A0%2C%22arkhamEntities%22%3A0%2C%22ens%22%3A0%2C%22opensea%22%3A0%2C%22polymarketEvents%22%3A0%2C%22pools%22%3A0%2C%22services%22%3A0%2C%22tags%22%3A0%2C%22tokens%22%3A0%2C%22twitter%22%3A0%2C%22types%22%3A0%2C%22userAddresses%22%3A0%2C%22userEntities%22%3A0%7D"}],"variable":[]}},"response":[{"id":"06a3763e-b36c-4f48-8eb6-bdcb8c2574f4","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/intelligence/search?query=binance","host":["https://api.arkm.com"],"path":["intelligence","search"],"query":[{"key":"query","value":"binance","description":"Optional. Search query string to match against entities, addresses, tokens, pools, ENS names, and more. An empty query returns no results."},{"key":"arkhamEntities","value":"1","description":"Optional. Max Arkham-curated entities to return (0–50, default 5).","disabled":true},{"key":"arkhamAddresses","value":"1","description":"Optional. Max Arkham-curated addresses with labels to return (0–50, default 5).","disabled":true},{"key":"userEntities","value":"1","description":"Optional. Max user-defined entities to return (0–50, default 5). Requires authentication.","disabled":true},{"key":"userAddresses","value":"1","description":"Optional. Max user-defined addresses with labels to return (0–50, default 5). Requires authentication.","disabled":true},{"key":"ens","value":"1","description":"Optional. Max ENS primary names to return (0–50, default 5).","disabled":true},{"key":"types","value":"1","description":"Optional. Max entity-type matches to return (0–50, default 5).","disabled":true},{"key":"services","value":"1","description":"Optional. Max CEX/VASP entities to return (0–50, default 5).","disabled":true},{"key":"twitter","value":"1","description":"Optional. Max Twitter-handle matches to return (0–50, default 5).","disabled":true},{"key":"opensea","value":"1","description":"Optional. Max OpenSea usernames to return (0–50, default 5).","disabled":true},{"key":"tokens","value":"1","description":"Optional. Max tokens to return (0–50, default 5).","disabled":true},{"key":"pools","value":"1","description":"Optional. Max Solana pools to return (0–50, default 5).","disabled":true},{"key":"tags","value":"1","description":"Optional. Max tag matches to return (0–50, default 0).","disabled":true},{"key":"polymarketEvents","value":"1","description":"Optional. Max Polymarket prediction events to return (0–50, default 0). Also enables the predictions-wallet match for address queries.","disabled":true},{"key":"arkhamEntitiesOffset","value":"1","description":"Optional. Skip the first N Arkham entities (0–500, default 0).","disabled":true},{"key":"arkhamAddressesOffset","value":"1","description":"Optional. Skip the first N Arkham addresses with labels (0–500, default 0).","disabled":true},{"key":"userEntitiesOffset","value":"1","description":"Optional. Skip the first N user entities (0–500, default 0).","disabled":true},{"key":"userAddressesOffset","value":"1","description":"Optional. Skip the first N user addresses with labels (0–500, default 0).","disabled":true},{"key":"ensOffset","value":"1","description":"Optional. Skip the first N ENS names (0–500, default 0).","disabled":true},{"key":"typesOffset","value":"1","description":"Optional. Skip the first N entity-type matches (0–500, default 0).","disabled":true},{"key":"servicesOffset","value":"1","description":"Optional. Skip the first N CEX/VASP entities (0–500, default 0).","disabled":true},{"key":"twitterOffset","value":"1","description":"Optional. Skip the first N Twitter matches (0–500, default 0).","disabled":true},{"key":"openseaOffset","value":"1","description":"Optional. Skip the first N OpenSea usernames (0–500, default 0).","disabled":true},{"key":"tokensOffset","value":"1","description":"Optional. Skip the first N tokens (0–500, default 0).","disabled":true},{"key":"poolsOffset","value":"1","description":"Optional. Skip the first N pools (0–500, default 0).","disabled":true},{"key":"tagsOffset","value":"1","description":"Optional. Skip the first N tag matches (0–500, default 0).","disabled":true},{"key":"filterLimits","value":"%7B%22arkhamAddresses%22%3A5%2C%22arkhamEntities%22%3A5%2C%22ens%22%3A5%2C%22opensea%22%3A5%2C%22polymarketEvents%22%3A5%2C%22pools%22%3A5%2C%22services%22%3A5%2C%22tags%22%3A0%2C%22tokens%22%3A10%2C%22twitter%22%3A5%2C%22types%22%3A5%2C%22userAddresses%22%3A5%2C%22userEntities%22%3A5%7D","description":"Optional. (Legacy. Prefer flat parameters such as arkhamAddresses=50.) URL-encoded JSON object specifying maximum results per category. Each value is capped at 50; defaults to 5 per category. Flat parameters, when provided, override values in this object.","disabled":true},{"key":"filterOffsets","value":"%7B%22arkhamAddresses%22%3A0%2C%22arkhamEntities%22%3A0%2C%22ens%22%3A0%2C%22opensea%22%3A0%2C%22polymarketEvents%22%3A0%2C%22pools%22%3A0%2C%22services%22%3A0%2C%22tags%22%3A0%2C%22tokens%22%3A0%2C%22twitter%22%3A0%2C%22types%22%3A0%2C%22userAddresses%22%3A0%2C%22userEntities%22%3A0%7D","description":"Optional. (Legacy. Prefer flat parameters such as arkhamAddressesOffset=10.) URL-encoded JSON object specifying pagination offset per category. Each value is capped at 500; defaults to 0 per category. Flat parameters, when provided, override values in this object.","disabled":true}]},"description":"Full-text search across addresses, entities, tokens, and Solana pools. Returns matching results ranked by relevance."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"arkhamAddresses\": [\n    {\n      \"address\": \"1HDWAto9mD4vwZkxE7RZ4nxvgYcA5vJQpG\",\n      \"arkhamLabel\": {\n        \"address\": \"1HDWAto9mD4vwZkxE7RZ4nxvgYcA5vJQpG\",\n        \"chainType\": \"bitcoin\",\n        \"name\": \"Binance Deposit\"\n      },\n      \"chain\": \"bitcoin\"\n    }\n  ],\n  \"arkhamEntities\": [\n    {\n      \"id\": \"binance\",\n      \"name\": \"Binance\",\n      \"note\": \"\",\n      \"service\": true,\n      \"twitter\": \"binance\",\n      \"type\": \"cex\"\n    }\n  ],\n  \"ens\": [\n    {\n      \"address\": \"0x00000029fF545c86524Ade7cAF132527707948C4\",\n      \"name\": \"binance.umbra.eth\"\n    }\n  ],\n  \"opensea\": [\n    {\n      \"address\": \"0xF5B42425E9805A1d76aC3F893aF71Ab2065563d4\",\n      \"profileImage\": null,\n      \"username\": \"binance_cz\"\n    }\n  ],\n  \"pools\": [\n    {\n      \"liquidityUsd\": 0,\n      \"marketCapUsd\": 0,\n      \"poolAddress\": \"CiLg83sX8nJQMPkRwGMZYcjbgcHxaXsL6XjZre5nmeKn\",\n      \"priceUsd\": 0.00008714,\n      \"pricingID\": \"bainance-labs\",\n      \"programAddress\": \"CPMMoo8L3F4NbTegBCKVNunggL7H1ZpdTHKxQB5qKP1C\",\n      \"tokenAddress\": \"4tViJmZ7LKREaqxrh3tXeCB5TfK7o67W3WhykHrr49ZC\",\n      \"tokenName\": \"bAInance Labs\",\n      \"tokenSymbol\": \"bainance\",\n      \"volume1h\": 0\n    }\n  ],\n  \"services\": [\n    {\n      \"id\": \"binance\",\n      \"name\": \"Binance\",\n      \"note\": \"\",\n      \"service\": true,\n      \"twitter\": \"binance\",\n      \"type\": \"cex\"\n    }\n  ],\n  \"tokens\": [\n    {\n      \"deployments\": [\n        {\n          \"address\": \"0x250632378E573c6Be1AC2f97Fcdf00515d0Aa91B\",\n          \"chain\": \"bsc\"\n        }\n      ],\n      \"identifier\": {\n        \"pricingID\": \"binance-eth\"\n      },\n      \"name\": \"Binance ETH staking\",\n      \"price\": 1940.37,\n      \"price24hAgo\": 1927.27,\n      \"symbol\": \"beth\"\n    }\n  ],\n  \"twitter\": [\n    {\n      \"id\": \"binance-us\",\n      \"name\": \"Binance US\",\n      \"note\": \"\",\n      \"service\": true,\n      \"twitter\": \"BinanceUS\",\n      \"type\": \"cex\"\n    }\n  ]\n}"}],"_postman_id":"fccf04f2-20bd-4013-a8da-dbfa63e6aa0b"},{"name":"Get tag definition updates","id":"dbed583f-1162-4ea7-83a5-47c33114f96f","request":{"method":"GET","header":[],"url":"https://api.arkm.com/intelligence/tags/updates?since=2025-01-01T00:00:00Z","description":"<p>Returns a feed of tag definition changes (new tags, updated descriptions, rank changes, deletions) with cursor-based pagination.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["intelligence","tags","updates"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Optional. Returns changes since this time. Required unless both 'from' and 'to' are provided; mutually exclusive with 'from'/'to'.</p>\n","type":"text/plain"},"key":"since","value":"2025-01-01T00:00:00Z"},{"disabled":true,"description":{"content":"<p>Optional. Start of time window (use with 'to', max 7-day window). Provide together with 'to' as an alternative to 'since'; mutually exclusive with 'since'.</p>\n","type":"text/plain"},"key":"from","value":"2025-01-01T00:00:00Z"},{"disabled":true,"description":{"content":"<p>Optional. End of time window (use with 'from', max 7-day window). Provide together with 'from' as an alternative to 'since'; mutually exclusive with 'since'.</p>\n","type":"text/plain"},"key":"to","value":"2025-01-07T00:00:00Z"},{"disabled":true,"description":{"content":"<p>Optional. Filter by change status.</p>\n","type":"text/plain"},"key":"status","value":"new"},{"disabled":true,"description":{"content":"<p>Optional. Tag IDs to filter by. Max 100.</p>\n","type":"text/plain"},"key":"tagId","value":"contract-deployer,early-token-holder"},{"disabled":true,"description":{"content":"<p>Optional. Tag categories to filter by. Max 100.</p>\n","type":"text/plain"},"key":"category","value":"DeFi,Social"},{"disabled":true,"description":{"content":"<p>Optional. Sort order: 'time' (asc), 'addressCount', or 'entityCount' (desc). Default 'time'.</p>\n","type":"text/plain"},"key":"orderBy","value":"time"},{"disabled":true,"description":{"content":"<p>Optional. Maximum results to return (1-1000, default 100).</p>\n","type":"text/plain"},"key":"limit","value":"100"},{"disabled":true,"description":{"content":"<p>Optional. Cursor token for pagination (from previous response).</p>\n","type":"text/plain"},"key":"pageToken","value":"eyJkIjoiMjAyNS0wMS0wMVQwMDowMDowMFoiLCJxIjowfQ=="}],"variable":[]}},"response":[{"id":"2f3031da-f999-4b5b-a95a-d08984496213","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/intelligence/tags/updates?since=2025-01-01T00:00:00Z","host":["https://api.arkm.com"],"path":["intelligence","tags","updates"],"query":[{"key":"since","value":"2025-01-01T00:00:00Z","description":"Optional. Returns changes since this time. Required unless both 'from' and 'to' are provided; mutually exclusive with 'from'/'to'."},{"key":"from","value":"2025-01-01T00:00:00Z","description":"Optional. Start of time window (use with 'to', max 7-day window). Provide together with 'to' as an alternative to 'since'; mutually exclusive with 'since'.","disabled":true},{"key":"to","value":"2025-01-07T00:00:00Z","description":"Optional. End of time window (use with 'from', max 7-day window). Provide together with 'from' as an alternative to 'since'; mutually exclusive with 'since'.","disabled":true},{"key":"status","value":"new","description":"Optional. Filter by change status.","disabled":true},{"key":"tagId","value":"contract-deployer,early-token-holder","description":"Optional. Tag IDs to filter by. Max 100.","disabled":true},{"key":"category","value":"DeFi,Social","description":"Optional. Tag categories to filter by. Max 100.","disabled":true},{"key":"orderBy","value":"time","description":"Optional. Sort order: 'time' (asc), 'addressCount', or 'entityCount' (desc). Default 'time'.","disabled":true},{"key":"limit","value":"100","description":"Optional. Maximum results to return (1-1000, default 100).","disabled":true},{"key":"pageToken","value":"eyJkIjoiMjAyNS0wMS0wMVQwMDowMDowMFoiLCJxIjowfQ==","description":"Optional. Cursor token for pagination (from previous response).","disabled":true}]},"description":"Returns a feed of tag definition changes (new tags, updated descriptions, rank changes, deletions) with cursor-based pagination."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"hasMore\": true,\n  \"items\": [\n    {\n      \"address_count\": 336199,\n      \"category\": \"Airdrop\",\n      \"description\": \"Addresses who received the $PENGU airdrop\",\n      \"diff_seq\": 1,\n      \"diff_ts\": \"2025-01-24T03:14:00Z\",\n      \"entity_count\": 5963,\n      \"id\": \"pengu-airdrop-recipient-cluster\",\n      \"rank\": 53,\n      \"status\": \"new\",\n      \"tag_name\": \"Pengu Airdrop Recipient Cluster\",\n      \"template\": \"Pengu Airdrop Recipient Cluster: %s\"\n    },\n    {\n      \"address_count\": 1,\n      \"category\": \"Other\",\n      \"description\": \"Addresses associated with prime brokerage entities that offer a suite of services for institutional clients including lending, leveraged trade executions, OTC deals, and asset management\",\n      \"diff_seq\": 1,\n      \"diff_ts\": \"2025-01-26T06:50:00Z\",\n      \"entity_count\": 0,\n      \"id\": \"brokerage\",\n      \"rank\": 5,\n      \"status\": \"updated\",\n      \"tag_name\": \"Brokerage\",\n      \"template\": \"Brokerage\"\n    }\n  ],\n  \"latest_diff_ts\": \"2025-12-19T05:33:00Z\",\n  \"pageToken\": \"eyJkIjoiMjAyNS0xMi0xOVQwNTozMzowMFoiLCJxIjoyOX0=\"\n}"}],"_postman_id":"dbed583f-1162-4ea7-83a5-47c33114f96f"},{"name":"Get intelligence on a token by chain/address","id":"a5b48c96-2dc0-430c-bce2-78ba146c16ac","request":{"method":"GET","header":[],"url":"https://api.arkm.com/intelligence/token/:chain/:address","description":"<p>Retrieve basic token info using chain and contract address.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["intelligence","token",":chain",":address"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"90a821e0-88a6-47f5-8de7-67effd8ff7d0","description":{"content":"<p>Required. Blockchain network where the token is deployed.</p>\n","type":"text/plain"},"type":"any","value":"ethereum","key":"chain"},{"id":"0c86069a-8711-4881-84ec-42e3d8fbdd63","description":{"content":"<p>Required. The token contract address to query.</p>\n","type":"text/plain"},"type":"any","value":"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","key":"address"}]}},"response":[{"id":"c4fe3610-f564-404c-99d6-c5946415d7bc","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/intelligence/token/:chain/:address","host":["https://api.arkm.com"],"path":["intelligence","token",":chain",":address"],"variable":[{"key":"chain","value":"ethereum","description":"Required. Blockchain network where the token is deployed."},{"key":"address","value":"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","description":"Required. The token contract address to query."}]},"description":"Retrieve basic token info using chain and contract address."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"identifier\": {\n    \"address\": \"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48\",\n    \"chain\": \"ethereum\",\n    \"pricingID\": \"usd-coin\"\n  },\n  \"name\": \"USD Coin\",\n  \"symbol\": \"USDC\",\n  \"tvTicker\": \"BINANCE:USDCUSDT\"\n}"}],"_postman_id":"a5b48c96-2dc0-430c-bce2-78ba146c16ac"},{"name":"Get intelligence on a token by CoinGecko pricing ID","id":"a7c78fc3-1b85-4fde-9ead-dece5fb44383","request":{"method":"GET","header":[],"url":"https://api.arkm.com/intelligence/token/:id","description":"<p>Retrieve basic token info using the CoinGecko pricing ID (e.g., \"bitcoin\", \"ethereum\").</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["intelligence","token",":id"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"1447eea0-16a1-4858-aa5a-1bd24c9afedd","description":{"content":"<p>Required. The CoinGecko pricing ID of the token.</p>\n","type":"text/plain"},"type":"any","value":"usd-coin","key":"id"}]}},"response":[{"id":"2629932d-bdb5-4142-971c-b46de2995693","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/intelligence/token/:id","host":["https://api.arkm.com"],"path":["intelligence","token",":id"],"variable":[{"key":"id","value":"usd-coin","description":"Required. The CoinGecko pricing ID of the token."}]},"description":"Retrieve basic token info using the CoinGecko pricing ID (e.g., \"bitcoin\", \"ethereum\")."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"identifier\": {\n    \"pricingID\": \"usd-coin\"\n  },\n  \"name\": \"USDC\",\n  \"price\": 0.99961,\n  \"price24hAgo\": 0.999892,\n  \"symbol\": \"usdc\",\n  \"tvTicker\": \"BINANCE:USDCUSDT\"\n}"}],"_postman_id":"a7c78fc3-1b85-4fde-9ead-dece5fb44383"}],"id":"1845c52f-c32a-4afd-92e8-9197dae05b28","_postman_id":"1845c52f-c32a-4afd-92e8-9197dae05b28","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}}},{"name":"loans","item":[{"name":"Get loan/borrow positions for an address","id":"ebe10ca1-ae44-4875-94ab-471e5f51ca28","request":{"method":"GET","header":[],"url":"https://api.arkm.com/loans/address/:address?chains=ethereum,bsc,polygon","description":"<p>Returns an overview of loaned/supplied/borrowed assets for a given address.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["loans","address",":address"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,arbitrum_one'). If omitted, returns loan positions across all supported chains.</p>\n","type":"text/plain"},"key":"chains","value":"ethereum,bsc,polygon"}],"variable":[{"id":"7a10ac2e-7167-4b04-8c2a-8d340b7f7bed","description":{"content":"<p>Required. The blockchain address to query loan positions for.</p>\n","type":"text/plain"},"type":"any","value":"0xaD1fB851e54C55D65D8CEfE65f9E4c64A83650fd","key":"address"}]}},"response":[{"id":"ab8126ab-fde3-41e9-aef2-c3ace2f5f985","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/loans/address/:address?chains=ethereum,bsc,polygon","host":["https://api.arkm.com"],"path":["loans","address",":address"],"query":[{"key":"chains","value":"ethereum,bsc,polygon","description":"Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,arbitrum_one'). If omitted, returns loan positions across all supported chains."}],"variable":[{"key":"address","value":"0xaD1fB851e54C55D65D8CEfE65f9E4c64A83650fd","description":"Required. The blockchain address to query loan positions for."}]},"description":"Returns an overview of loaned/supplied/borrowed assets for a given address."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"addresses\": {\n    \"arbitrum_one\": {\n      \"0xaD1fB851e54C55D65D8CEfE65f9E4c64A83650fd\": {\n        \"address\": \"0xaD1fB851e54C55D65D8CEfE65f9E4c64A83650fd\",\n        \"arkhamLabel\": {\n          \"address\": \"0xaD1fB851e54C55D65D8CEfE65f9E4c64A83650fd\",\n          \"chainType\": \"evm\",\n          \"name\": \"etherean.eth\"\n        },\n        \"chain\": \"arbitrum_one\",\n        \"contract\": false,\n        \"isUserAddress\": false\n      }\n    },\n    \"ethereum\": {\n      \"0xaD1fB851e54C55D65D8CEfE65f9E4c64A83650fd\": {\n        \"address\": \"0xaD1fB851e54C55D65D8CEfE65f9E4c64A83650fd\",\n        \"arkhamLabel\": {\n          \"address\": \"0xaD1fB851e54C55D65D8CEfE65f9E4c64A83650fd\",\n          \"chainType\": \"evm\",\n          \"name\": \"etherean.eth\"\n        },\n        \"chain\": \"ethereum\",\n        \"contract\": false,\n        \"isUserAddress\": false\n      }\n    }\n  },\n  \"balances\": {\n    \"arbitrum_one\": [\n      {\n        \"address\": \"0x9c4ec768c28520B50860ea7a15bd7213a9fF58bf\",\n        \"balance\": 23792.73678,\n        \"balanceExact\": \"23792736780\",\n        \"id\": \"usd-coin\",\n        \"market\": \"0x9c4ec768c28520B50860ea7a15bd7213a9fF58bf\",\n        \"name\": \"USD Coin\",\n        \"price\": 1,\n        \"price24hAgo\": 1,\n        \"protocol\": \"COMPOUND_V3\",\n        \"quoteTime\": \"2026-07-07T15:34:50.955Z\",\n        \"symbol\": \"USDC\",\n        \"type\": \"borrowed\",\n        \"underlyingAssetAddress\": \"0xaf88d065e77c8cC2239327C5EDb3A432268e5831\",\n        \"underlyingAssetID\": \"usd-coin\",\n        \"usd\": 23792.73678\n      },\n      {\n        \"address\": \"0xA5EDBDD9646f8dFF606d7448e414884C7d905dCA\",\n        \"balance\": 12142.723738,\n        \"balanceExact\": \"12142723738\",\n        \"id\": \"usd-coin-ethereum-bridged\",\n        \"market\": \"0xA5EDBDD9646f8dFF606d7448e414884C7d905dCA\",\n        \"name\": \"USD Coin (Arb1)\",\n        \"price\": 1,\n        \"price24hAgo\": 1,\n        \"protocol\": \"COMPOUND_V3\",\n        \"quoteTime\": \"2026-07-07T15:34:35.701Z\",\n        \"symbol\": \"USDC\",\n        \"type\": \"borrowed\",\n        \"underlyingAssetAddress\": \"0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8\",\n        \"underlyingAssetID\": \"usd-coin-ethereum-bridged\",\n        \"usd\": 12142.723738\n      }\n    ],\n    \"ethereum\": [\n      {\n        \"address\": \"0xc3d688B66703497DAA19211EEdff47f25384cdc3\",\n        \"balance\": 213778.237113,\n        \"balanceExact\": \"213778237113\",\n        \"id\": \"usd-coin\",\n        \"market\": \"0xc3d688B66703497DAA19211EEdff47f25384cdc3\",\n        \"name\": \"USD Coin\",\n        \"price\": 1,\n        \"price24hAgo\": 1,\n        \"protocol\": \"COMPOUND_V3\",\n        \"quoteTime\": \"2026-07-07T15:34:50.955Z\",\n        \"symbol\": \"USDC\",\n        \"type\": \"borrowed\",\n        \"underlyingAssetAddress\": \"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48\",\n        \"underlyingAssetID\": \"usd-coin\",\n        \"usd\": 213778.237113\n      },\n      {\n        \"address\": \"0xc3d688B66703497DAA19211EEdff47f25384cdc3\",\n        \"balance\": 78.53290370957879,\n        \"balanceExact\": \"78532903709578783817\",\n        \"id\": \"weth\",\n        \"market\": \"0xc3d688B66703497DAA19211EEdff47f25384cdc3\",\n        \"name\": \"Wrapped Ether\",\n        \"price\": 1792.54,\n        \"price24hAgo\": 1762.1,\n        \"protocol\": \"COMPOUND_V3\",\n        \"quoteTime\": \"2026-07-07T15:34:46.553Z\",\n        \"symbol\": \"WETH\",\n        \"type\": \"supplied\",\n        \"underlyingAssetAddress\": \"0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2\",\n        \"underlyingAssetID\": \"weth\",\n        \"usd\": 140773.37121556836\n      }\n    ]\n  },\n  \"totalPositions\": {\n    \"arbitrum_one\": 48146.42974611472,\n    \"ethereum\": 359915.8033752398\n  }\n}"}],"_postman_id":"ebe10ca1-ae44-4875-94ab-471e5f51ca28"},{"name":"Get loan/borrow positions for an entity","id":"6ccdabdd-f79d-48bc-be67-a49659150959","request":{"method":"GET","header":[],"url":"https://api.arkm.com/loans/entity/:entity?chains=ethereum,bsc,polygon","description":"<p>Returns an overview of loaned/supplied/borrowed assets for a given entity.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["loans","entity",":entity"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,arbitrum_one'). If omitted, returns loan positions across all supported chains.</p>\n","type":"text/plain"},"key":"chains","value":"ethereum,bsc,polygon"}],"variable":[{"id":"e63cacd7-75d8-4385-a9cb-98d13587b84b","description":{"content":"<p>Required. The entity ID to query loan positions for. Accepts both Arkham entity IDs and user entity IDs.</p>\n","type":"text/plain"},"type":"any","value":"binance","key":"entity"}]}},"response":[{"id":"3cae9632-e8f2-4620-9708-11025fd5c202","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/loans/entity/:entity?chains=ethereum,bsc,polygon","host":["https://api.arkm.com"],"path":["loans","entity",":entity"],"query":[{"key":"chains","value":"ethereum,bsc,polygon","description":"Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,arbitrum_one'). If omitted, returns loan positions across all supported chains."}],"variable":[{"key":"entity","value":"binance","description":"Required. The entity ID to query loan positions for. Accepts both Arkham entity IDs and user entity IDs."}]},"description":"Returns an overview of loaned/supplied/borrowed assets for a given entity."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"balances\": {\n    \"arbitrum_one\": [\n      {\n        \"address\": \"0x6ab707Aca953eDAeFBc4fD23bA73294241490620\",\n        \"balance\": 1676.612954,\n        \"id\": \"usdt0\",\n        \"market\": \"0x6ab707Aca953eDAeFBc4fD23bA73294241490620\",\n        \"name\": \"Aave Arbitrum USDT\",\n        \"price\": 1,\n        \"price24hAgo\": 1,\n        \"protocol\": \"AAVE_V3\",\n        \"quoteTime\": \"2026-07-07T14:55:44.119Z\",\n        \"symbol\": \"aArbUSDT\",\n        \"type\": \"supplied\",\n        \"underlyingAssetAddress\": \"0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9\",\n        \"underlyingAssetID\": \"usdt0\",\n        \"usd\": 1676.612954\n      },\n      {\n        \"address\": \"0x724dc807b04555b71ed48a6896b6F41593b8C637\",\n        \"balance\": 29.871206,\n        \"id\": \"usd-coin\",\n        \"market\": \"0x724dc807b04555b71ed48a6896b6F41593b8C637\",\n        \"name\": \"Aave Arbitrum USDCn\",\n        \"price\": 1,\n        \"price24hAgo\": 1,\n        \"protocol\": \"AAVE_V3\",\n        \"quoteTime\": \"2026-07-07T14:55:39.964Z\",\n        \"symbol\": \"aArbUSDCn\",\n        \"type\": \"supplied\",\n        \"underlyingAssetAddress\": \"0xaf88d065e77c8cC2239327C5EDb3A432268e5831\",\n        \"underlyingAssetID\": \"usd-coin\",\n        \"usd\": 29.871206\n      }\n    ],\n    \"ethereum\": [\n      {\n        \"address\": \"0x98C23E9d8f34FEFb1B7BD6a91B7FF122F4e16F5c\",\n        \"balance\": 10875.867582,\n        \"id\": \"usd-coin\",\n        \"market\": \"0x98C23E9d8f34FEFb1B7BD6a91B7FF122F4e16F5c\",\n        \"name\": \"Aave Ethereum USDC\",\n        \"price\": 1,\n        \"price24hAgo\": 1,\n        \"protocol\": \"AAVE_V3\",\n        \"quoteTime\": \"2026-07-07T14:55:39.964Z\",\n        \"symbol\": \"aEthUSDC\",\n        \"type\": \"supplied\",\n        \"underlyingAssetAddress\": \"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48\",\n        \"underlyingAssetID\": \"usd-coin\",\n        \"usd\": 10875.867582\n      },\n      {\n        \"address\": \"0x23878914EFE38d27C4D67Ab83ed1b93A74D4086a\",\n        \"balance\": 5673.819058,\n        \"id\": \"tether\",\n        \"market\": \"0x23878914EFE38d27C4D67Ab83ed1b93A74D4086a\",\n        \"name\": \"Aave Ethereum USDT\",\n        \"price\": 1,\n        \"price24hAgo\": 1,\n        \"protocol\": \"AAVE_V3\",\n        \"quoteTime\": \"2026-07-07T14:55:32.963Z\",\n        \"symbol\": \"aEthUSDT\",\n        \"type\": \"supplied\",\n        \"underlyingAssetAddress\": \"0xdAC17F958D2ee523a2206206994597C13D831ec7\",\n        \"underlyingAssetID\": \"tether\",\n        \"usd\": 5673.819058\n      }\n    ]\n  },\n  \"entities\": {\n    \"binance\": {\n      \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n      \"description\": \"\",\n      \"id\": \"binance\",\n      \"linkedin\": \"https://www.linkedin.com/company/binance\",\n      \"name\": \"Binance\",\n      \"note\": \"\",\n      \"populatedTags\": [\n        {\n          \"disablePage\": false,\n          \"excludeEntities\": false,\n          \"id\": \"proof-of-reserves\",\n          \"label\": \"Binance Proof of Reserves\",\n          \"rank\": 20,\n          \"tagParams\": \"Binance\"\n        },\n        {\n          \"disablePage\": false,\n          \"excludeEntities\": false,\n          \"id\": \"cex\",\n          \"label\": \"Centralized Exchange\",\n          \"rank\": 50\n        }\n      ],\n      \"service\": null,\n      \"twitter\": \"https://twitter.com/binance\",\n      \"type\": \"cex\",\n      \"website\": \"https://binance.com\"\n    }\n  },\n  \"totalPositions\": {\n    \"arbitrum_one\": 1725.5757898151708,\n    \"ethereum\": 18641.93066428793\n  }\n}"}],"_postman_id":"6ccdabdd-f79d-48bc-be67-a49659150959"}],"id":"780cdd9b-10c5-40af-b840-4424c8880098","_postman_id":"780cdd9b-10c5-40af-b840-4424c8880098","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}}},{"name":"marketdata","item":[{"name":"Get Altcoin Index","id":"d4b83615-2dd5-45fb-af52-fe9578fb72ea","request":{"method":"GET","header":[],"url":"https://api.arkm.com/marketdata/altcoin_index","description":"<p>Returns the current Altcoin Index value, which measures altcoin performance relative to Bitcoin.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["marketdata","altcoin_index"],"host":["https://api.arkm.com"],"query":[],"variable":[]}},"response":[{"id":"bfe281a4-ddb5-4ce1-8a71-8a12a9fe5102","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.arkm.com/marketdata/altcoin_index","description":"Returns the current Altcoin Index value, which measures altcoin performance relative to Bitcoin."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"altcoinIndex\": 63\n}"}],"_postman_id":"d4b83615-2dd5-45fb-af52-fe9578fb72ea"}],"id":"b9c8480f-66ea-4dda-a0ea-d66db7474515","_postman_id":"b9c8480f-66ea-4dda-a0ea-d66db7474515","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}}},{"name":"networks","item":[{"name":"Get historical data for a blockchain network","id":"1905e379-2a65-43ee-90ba-9da4bc79134f","request":{"method":"GET","header":[],"url":"https://api.arkm.com/networks/history/:chain","description":"<p>Retrieves the full daily price, volume, and market-cap history of a blockchain network's native token, from the token's launch to the latest available snapshot.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["networks","history",":chain"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"77b2fcce-0de8-4267-b8e6-cabe18b98554","description":{"content":"<p>Required. The blockchain network identifier.</p>\n","type":"text/plain"},"type":"any","value":"ethereum","key":"chain"}]}},"response":[{"id":"1d69dd70-5e43-4de1-bfd4-69d9cee16edc","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/networks/history/:chain","host":["https://api.arkm.com"],"path":["networks","history",":chain"],"variable":[{"key":"chain","value":"ethereum","description":"Required. The blockchain network identifier."}]},"description":"Retrieves the full daily price, volume, and market-cap history of a blockchain network's native token, from the token's launch to the latest available snapshot."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"marketCap\": 15091573435.25,\n    \"time\": \"2019-03-30T00:00:00Z\",\n    \"usd\": 143.15,\n    \"volume24h\": 6309182468.75\n  },\n  {\n    \"marketCap\": 146718573462,\n    \"time\": \"2022-11-17T00:04:43.16Z\",\n    \"usd\": 1217.98,\n    \"volume24h\": 8857864433\n  },\n  {\n    \"marketCap\": 215157394830,\n    \"time\": \"2026-07-06T00:00:30.587Z\",\n    \"usd\": 1783.55,\n    \"volume24h\": 10802375225\n  }\n]"}],"_postman_id":"1905e379-2a65-43ee-90ba-9da4bc79134f"},{"name":"Get current status for all blockchain networks","id":"60abf800-f230-4888-a60b-c2f73004170d","request":{"method":"GET","header":[],"url":"https://api.arkm.com/networks/status","description":"<p>Retrieves the current status for all supported blockchain networks, including price, 24h price change, volume, market cap, latest block (tip), total transfers, and gas/fee information. Each network includes an \"asOf\" object giving the time each piece of data was last read; values are served from a cache refreshed about once per minute.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["networks","status"],"host":["https://api.arkm.com"],"query":[],"variable":[]}},"response":[{"id":"039518d8-dabb-469e-bd79-400bbd7b73d2","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.arkm.com/networks/status","description":"Retrieves the current status for all supported blockchain networks, including price, 24h price change, volume, market cap, latest block (tip), total transfers, and gas/fee information. Each network includes an \"asOf\" object giving the time each piece of data was last read; values are served from a cache refreshed about once per minute."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"bitcoin\": {\n    \"active\": true,\n    \"asOf\": {\n      \"fee\": \"2026-07-06T14:00:37.216437394Z\",\n      \"price\": \"2026-07-06T14:00:37.212573416Z\",\n      \"tip\": \"2026-07-06T14:00:37.214465232Z\",\n      \"transfers\": \"2026-07-06T14:00:37.239063539Z\"\n    },\n    \"chain\": \"bitcoin\",\n    \"gasFee\": null,\n    \"marketCap\": 1239738051993,\n    \"price\": 61828,\n    \"priceChange24h\": -910,\n    \"priceChange24hPercent\": -1.45,\n    \"satFee\": 506,\n    \"tip\": 956923,\n    \"tps\": 0,\n    \"transfers\": 7215875738,\n    \"volume\": 27395894777\n  },\n  \"ethereum\": {\n    \"active\": true,\n    \"asOf\": {\n      \"fee\": \"2026-07-06T14:00:37.214666903Z\",\n      \"price\": \"2026-07-06T14:00:37.212834121Z\",\n      \"tip\": \"2026-07-06T14:00:37.214097043Z\",\n      \"transfers\": \"2026-07-06T14:00:37.241411754Z\"\n    },\n    \"chain\": \"ethereum\",\n    \"gasFee\": 1.13,\n    \"marketCap\": 210742916805,\n    \"price\": 1745.84,\n    \"priceChange24h\": -18.71,\n    \"priceChange24hPercent\": -1.06,\n    \"satFee\": null,\n    \"tip\": 25473954,\n    \"tps\": 0,\n    \"transfers\": 6082358603,\n    \"volume\": 10129176757\n  }\n}"}],"_postman_id":"60abf800-f230-4888-a60b-c2f73004170d"}],"id":"68f8a0ce-04ea-4356-abee-53c674e8802c","_postman_id":"68f8a0ce-04ea-4356-abee-53c674e8802c","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}}},{"name":"polymarket","item":[{"name":"Polymarket activity feed","id":"7a8f003a-e42b-4d42-b190-f6d751b7c1f2","request":{"method":"GET","header":[],"url":"https://api.arkm.com/polymarket/activity","description":"<p>Returns a paginated feed of Polymarket trade and lifecycle events (trades, splits, merges, converts), newest first. Use <code>actions</code>, <code>eventType</code>, or <code>direction</code> to scope which event types are returned (<code>actions</code> can't be combined with the other two).</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["polymarket","activity"],"host":["https://api.arkm.com"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Optional. Filter to specific Polymarket trade addresses.</p>\n","type":"text/plain"},"key":"userAddresses","value":"0xBDDF61Af533fF524D27154e589d2D7A81510C684"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Filter to activity attributed to specific Arkham entity IDs. Combined with userAddresses using OR.</p>\n","type":"text/plain"},"key":"entityIDs","value":"abc123"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Filter to a single market condition ID (all of its outcome tokens).</p>\n","type":"text/plain"},"key":"conditionID","value":"0x9be56371f6a29d12769b2f196847ee825b9585ebb8bfa042136be031b081eba1"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Filter to all markets and outcomes in a Polymarket event.</p>\n","type":"text/plain"},"key":"eventID","value":"30615"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Filter to specific outcome token addresses. The conditionID, eventID, and tokenAddresses filters are intersected (a token must satisfy all provided).</p>\n","type":"text/plain"},"key":"tokenAddresses","value":"0x7baa312d6393ea83c631fb77b47061651a2a9992c40fcac017009611d6a03df4"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Minimum notional (size * price) in whole USD.</p>\n","type":"text/plain"},"key":"minUsd","value":"100"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Maximum notional (size * price) in whole USD.</p>\n","type":"text/plain"},"key":"maxUsd","value":"1000"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Minimum per-share price as a 0-1 fraction.</p>\n","type":"text/plain"},"key":"minPrice","value":"0.25"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Maximum per-share price as a 0-1 fraction.</p>\n","type":"text/plain"},"key":"maxPrice","value":"0.75"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Minimum trade size in whole outcome-token shares.</p>\n","type":"text/plain"},"key":"minSize","value":"10"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Maximum trade size in whole outcome-token shares.</p>\n","type":"text/plain"},"key":"maxSize","value":"500"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Filter to one or more actions: buy, sell, split, merge, convert. Cannot be combined with eventType or direction.</p>\n","type":"text/plain"},"key":"actions","value":"buy"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Filter by event class: trade, split, merge, or convert. Use direction to narrow trades to one side.</p>\n","type":"text/plain"},"key":"eventType","value":"trade"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Narrow trades to one side: buy or sell. Only valid with eventType=trade (or no eventType).</p>\n","type":"text/plain"},"key":"direction","value":"buy"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Unix timestamp in seconds for the start of the range (inclusive).</p>\n","type":"text/plain"},"key":"startTime","value":"1717200000"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Unix timestamp in seconds for the end of the range (exclusive).</p>\n","type":"text/plain"},"key":"endTime","value":"1719878400"},{"disabled":true,"description":{"content":"<p>Optional. Max results (default 50, max 500).</p>\n","type":"text/plain"},"key":"limit","value":"50"},{"disabled":true,"description":{"content":"<p>Optional. Offset for pagination (default 0).</p>\n","type":"text/plain"},"key":"offset","value":"0"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Pass an empty value on the first request to use cursor pagination, then pass the returned nextCursor without changing filters or sorting. Cannot be combined with a non-zero offset.</p>\n","type":"text/plain"},"key":"cursor","value":""},{"disabled":true,"description":{"content":"<p>Optional. Fast pagination defaults to true. For offset pagination, set false to count matches up to 10,000. Cursor pagination always skips the exact count.</p>\n","type":"text/plain"},"key":"fastPagination","value":"true"},{"disabled":true,"description":{"content":"<p>Optional. Column to order by: time (default), size (outcome-token shares), price (cents-per-share), usd (notional).</p>\n","type":"text/plain"},"key":"sortBy","value":"time"},{"disabled":true,"description":{"content":"<p>Optional. Sort direction: asc or desc (default).</p>\n","type":"text/plain"},"key":"sortOrder","value":"asc"}],"variable":[]}},"response":[{"id":"84d61b0a-5c95-4815-bb7c-38f9d32e7e6b","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/polymarket/activity","host":["https://api.arkm.com"],"path":["polymarket","activity"],"query":[{"key":"userAddresses","value":"0xBDDF61Af533fF524D27154e589d2D7A81510C684","description":"Optional. Optional. Filter to specific Polymarket trade addresses.","disabled":true},{"key":"entityIDs","value":"abc123","description":"Optional. Optional. Filter to activity attributed to specific Arkham entity IDs. Combined with userAddresses using OR.","disabled":true},{"key":"conditionID","value":"0x9be56371f6a29d12769b2f196847ee825b9585ebb8bfa042136be031b081eba1","description":"Optional. Optional. Filter to a single market condition ID (all of its outcome tokens).","disabled":true},{"key":"eventID","value":"30615","description":"Optional. Optional. Filter to all markets and outcomes in a Polymarket event.","disabled":true},{"key":"tokenAddresses","value":"0x7baa312d6393ea83c631fb77b47061651a2a9992c40fcac017009611d6a03df4","description":"Optional. Optional. Filter to specific outcome token addresses. The conditionID, eventID, and tokenAddresses filters are intersected (a token must satisfy all provided).","disabled":true},{"key":"minUsd","value":"100","description":"Optional. Optional. Minimum notional (size * price) in whole USD.","disabled":true},{"key":"maxUsd","value":"1000","description":"Optional. Optional. Maximum notional (size * price) in whole USD.","disabled":true},{"key":"minPrice","value":"0.25","description":"Optional. Optional. Minimum per-share price as a 0-1 fraction.","disabled":true},{"key":"maxPrice","value":"0.75","description":"Optional. Optional. Maximum per-share price as a 0-1 fraction.","disabled":true},{"key":"minSize","value":"10","description":"Optional. Optional. Minimum trade size in whole outcome-token shares.","disabled":true},{"key":"maxSize","value":"500","description":"Optional. Optional. Maximum trade size in whole outcome-token shares.","disabled":true},{"key":"actions","value":"buy","description":"Optional. Optional. Filter to one or more actions: buy, sell, split, merge, convert. Cannot be combined with eventType or direction.","disabled":true},{"key":"eventType","value":"trade","description":"Optional. Optional. Filter by event class: trade, split, merge, or convert. Use direction to narrow trades to one side.","disabled":true},{"key":"direction","value":"buy","description":"Optional. Optional. Narrow trades to one side: buy or sell. Only valid with eventType=trade (or no eventType).","disabled":true},{"key":"startTime","value":"1717200000","description":"Optional. Optional. Unix timestamp in seconds for the start of the range (inclusive).","disabled":true},{"key":"endTime","value":"1719878400","description":"Optional. Optional. Unix timestamp in seconds for the end of the range (exclusive).","disabled":true},{"key":"limit","value":"50","description":"Optional. Max results (default 50, max 500).","disabled":true},{"key":"offset","value":"0","description":"Optional. Offset for pagination (default 0).","disabled":true},{"key":"cursor","value":"","description":"Optional. Optional. Pass an empty value on the first request to use cursor pagination, then pass the returned nextCursor without changing filters or sorting. Cannot be combined with a non-zero offset.","disabled":true},{"key":"fastPagination","value":"true","description":"Optional. Fast pagination defaults to true. For offset pagination, set false to count matches up to 10,000. Cursor pagination always skips the exact count.","disabled":true},{"key":"sortBy","value":"time","description":"Optional. Column to order by: time (default), size (outcome-token shares), price (cents-per-share), usd (notional).","disabled":true},{"key":"sortOrder","value":"asc","description":"Optional. Sort direction: asc or desc (default).","disabled":true}]},"description":"Returns a paginated feed of Polymarket trade and lifecycle events (trades, splits, merges, converts), newest first. Use `actions`, `eventType`, or `direction` to scope which event types are returned (`actions` can't be combined with the other two)."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"events\": [\n    {\n      \"blockTimestamp\": \"2026-06-22T13:29:41Z\",\n      \"conditionId\": \"0x38e99171e9124c355447b04ff5cfa38d6c3ebaf9a1daed629cfcdd6fff175878\",\n      \"direction\": \"buy\",\n      \"eventId\": 618839,\n      \"eventType\": \"trade\",\n      \"imageUrl\": \"https://polymarket-upload.s3.us-east-2.amazonaws.com/ETH+fullsize.jpg\",\n      \"logIndex\": 489,\n      \"notional\": \"10.692\",\n      \"outcome\": \"Up\",\n      \"question\": \"Ethereum Up or Down - June 22, 9:30AM-9:35AM ET\",\n      \"size\": \"23.76\",\n      \"tokenAddress\": \"0x9a1e6e413d83cfafee559d0e9d712c4aa64e93a8ad194d7cba115d9a6d78fc35\",\n      \"transactionHash\": \"0xbbe268603c723149ee622d7d506ea8ed51bec4f2a230fdf0f31947a7981012ad\",\n      \"userAddress\": \"0x15cf1841c9A9F9aB5E1065ef7db255DEfcADd12c\"\n    }\n  ],\n  \"nextCursor\": \"abc123\",\n  \"totalCount\": 10000\n}"}],"_postman_id":"7a8f003a-e42b-4d42-b190-f6d751b7c1f2"},{"name":"Polymarket positions in a market","id":"3f440208-1a23-4d8a-b9df-3af16278639a","request":{"method":"GET","header":[],"url":"https://api.arkm.com/polymarket/event-positions/:conditionId","description":"<p>Returns holders and their positions for a market's outcome tokens — one row per user and token, with shares, price, value, and PnL.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["polymarket","event-positions",":conditionId"],"host":["https://api.arkm.com"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Optional. Explicit outcome token list; overrides condition-derived tokens and can span markets beyond the path conditionId.</p>\n","type":"text/plain"},"key":"tokenAddresses","value":"0x7baa312d6393ea83c631fb77b47061651a2a9992c40fcac017009611d6a03df4"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Filter to specific Polymarket trade addresses.</p>\n","type":"text/plain"},"key":"userAddresses","value":"0xBDDF61Af533fF524D27154e589d2D7A81510C684"},{"disabled":true,"description":{"content":"<p>Optional. Optional. 0 for Yes token, 1 for No token.</p>\n","type":"text/plain"},"key":"outcome","value":"1"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Minimum held shares (whole outcome-token shares).</p>\n","type":"text/plain"},"key":"minShares","value":"10"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Maximum held shares (whole outcome-token shares).</p>\n","type":"text/plain"},"key":"maxShares","value":"500"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Minimum current position value in whole USD.</p>\n","type":"text/plain"},"key":"minValue","value":"100"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Maximum current position value in whole USD.</p>\n","type":"text/plain"},"key":"maxValue","value":"1000"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Minimum PnL in whole USD (can be negative).</p>\n","type":"text/plain"},"key":"minPnl","value":"-100"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Maximum PnL in whole USD (can be negative).</p>\n","type":"text/plain"},"key":"maxPnl","value":"500"},{"disabled":true,"description":{"content":"<p>Optional. Optional. \"pnl\" (default), \"shares\", or \"value\".</p>\n","type":"text/plain"},"key":"sortBy","value":"pnl"},{"disabled":true,"description":{"content":"<p>Optional. Optional. \"asc\" or \"desc\" (default).</p>\n","type":"text/plain"},"key":"sortOrder","value":"asc"},{"disabled":true,"description":{"content":"<p>Optional. Max results (default 50, max 1000).</p>\n","type":"text/plain"},"key":"limit","value":"50"},{"disabled":true,"description":{"content":"<p>Optional. Offset for pagination (default 0).</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[{"id":"f6b47639-10f0-4a25-80fa-6fd568996674","description":{"content":"<p>Required. Required. Polymarket condition ID.</p>\n","type":"text/plain"},"type":"any","value":"0x9be56371f6a29d12769b2f196847ee825b9585ebb8bfa042136be031b081eba1","key":"conditionId"}]}},"response":[{"id":"c74034f6-91d9-41e2-b35b-ef408302db8d","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/polymarket/event-positions/:conditionId","host":["https://api.arkm.com"],"path":["polymarket","event-positions",":conditionId"],"query":[{"key":"tokenAddresses","value":"0x7baa312d6393ea83c631fb77b47061651a2a9992c40fcac017009611d6a03df4","description":"Optional. Optional. Explicit outcome token list; overrides condition-derived tokens and can span markets beyond the path conditionId.","disabled":true},{"key":"userAddresses","value":"0xBDDF61Af533fF524D27154e589d2D7A81510C684","description":"Optional. Optional. Filter to specific Polymarket trade addresses.","disabled":true},{"key":"outcome","value":"1","description":"Optional. Optional. 0 for Yes token, 1 for No token.","disabled":true},{"key":"minShares","value":"10","description":"Optional. Optional. Minimum held shares (whole outcome-token shares).","disabled":true},{"key":"maxShares","value":"500","description":"Optional. Optional. Maximum held shares (whole outcome-token shares).","disabled":true},{"key":"minValue","value":"100","description":"Optional. Optional. Minimum current position value in whole USD.","disabled":true},{"key":"maxValue","value":"1000","description":"Optional. Optional. Maximum current position value in whole USD.","disabled":true},{"key":"minPnl","value":"-100","description":"Optional. Optional. Minimum PnL in whole USD (can be negative).","disabled":true},{"key":"maxPnl","value":"500","description":"Optional. Optional. Maximum PnL in whole USD (can be negative).","disabled":true},{"key":"sortBy","value":"pnl","description":"Optional. Optional. \"pnl\" (default), \"shares\", or \"value\".","disabled":true},{"key":"sortOrder","value":"asc","description":"Optional. Optional. \"asc\" or \"desc\" (default).","disabled":true},{"key":"limit","value":"50","description":"Optional. Max results (default 50, max 1000).","disabled":true},{"key":"offset","value":"0","description":"Optional. Offset for pagination (default 0).","disabled":true}],"variable":[{"key":"conditionId","value":"0x9be56371f6a29d12769b2f196847ee825b9585ebb8bfa042136be031b081eba1","description":"Required. Required. Polymarket condition ID."}]},"description":"Returns holders and their positions for a market's outcome tokens — one row per user and token, with shares, price, value, and PnL."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"conditionId\": \"0x9be56371f6a29d12769b2f196847ee825b9585ebb8bfa042136be031b081eba1\",\n  \"positions\": [\n    {\n      \"conditionId\": \"0x9be56371f6a29d12769b2f196847ee825b9585ebb8bfa042136be031b081eba1\",\n      \"imageUrl\": \"https://polymarket-upload.s3.us-east-2.amazonaws.com/world-cup-winner-netherlands-flag-20260603-192743.png\",\n      \"outcome\": \"Yes\",\n      \"pnl\": \"183116.690251204\",\n      \"price\": 0.0545,\n      \"question\": \"Will Netherlands win the 2026 FIFA World Cup?\",\n      \"shares\": \"6337.619912\",\n      \"tokenAddress\": \"0x7baa312d6393ea83c631fb77b47061651a2a9992c40fcac017009611d6a03df4\",\n      \"totalTrades\": 5818,\n      \"userAddress\": \"0xB687f00464E33934f5d591F224E71C3559ecAeE5\",\n      \"value\": \"345.400285204\"\n    }\n  ],\n  \"totalCount\": 40468\n}"}],"_postman_id":"3f440208-1a23-4d8a-b9df-3af16278639a"},{"name":"List Polymarket events","id":"ce11e1dd-f9c1-4350-8141-393e986436c0","request":{"method":"GET","header":[],"url":"https://api.arkm.com/polymarket/events","description":"<p>Returns a filtered, paginated list of Polymarket events, each with a few top-market previews and current prices. Set groupGames=true to represent each sporting fixture by its winner event.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["polymarket","events"],"host":["https://api.arkm.com"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Optional. Filter by event tag. Matches lowercase Polymarket tags case-insensitively.</p>\n","type":"text/plain"},"key":"tag","value":"crypto"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Exclude events carrying this tag (case-insensitive).</p>\n","type":"text/plain"},"key":"excludeTag","value":"sports"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Filter to active events — not closed and not ended (true/false).</p>\n","type":"text/plain"},"key":"active","value":"true"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Search event titles, market questions, and grouped-market titles.</p>\n","type":"text/plain"},"key":"search","value":"bitcoin"},{"disabled":true,"description":{"content":"<p>Optional. Optional. When true, return one winner event per sporting fixture instead of each related event. Default: false.</p>\n","type":"text/plain"},"key":"groupGames","value":"true"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Sort field: volume, endDate (resolution eligibility), or createdAt. Default: volume when no tag, endDate when tag is set.</p>\n","type":"text/plain"},"key":"sortBy","value":"volume"},{"disabled":true,"description":{"content":"<p>Optional. Sort order: asc or desc. Default: desc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"disabled":true,"description":{"content":"<p>Optional. Max events to return (1-100). Default: 50.</p>\n","type":"text/plain"},"key":"limit","value":"50"},{"disabled":true,"description":{"content":"<p>Optional. Pagination offset. Default: 0.</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"06fcc92d-189d-47f7-85b9-34730b854017","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/polymarket/events","host":["https://api.arkm.com"],"path":["polymarket","events"],"query":[{"key":"tag","value":"crypto","description":"Optional. Optional. Filter by event tag. Matches lowercase Polymarket tags case-insensitively.","disabled":true},{"key":"excludeTag","value":"sports","description":"Optional. Optional. Exclude events carrying this tag (case-insensitive).","disabled":true},{"key":"active","value":"true","description":"Optional. Optional. Filter to active events — not closed and not ended (true/false).","disabled":true},{"key":"search","value":"bitcoin","description":"Optional. Optional. Search event titles, market questions, and grouped-market titles.","disabled":true},{"key":"groupGames","value":"true","description":"Optional. Optional. When true, return one winner event per sporting fixture instead of each related event. Default: false.","disabled":true},{"key":"sortBy","value":"volume","description":"Optional. Optional. Sort field: volume, endDate (resolution eligibility), or createdAt. Default: volume when no tag, endDate when tag is set.","disabled":true},{"key":"order","value":"asc","description":"Optional. Sort order: asc or desc. Default: desc.","disabled":true},{"key":"limit","value":"50","description":"Optional. Max events to return (1-100). Default: 50.","disabled":true},{"key":"offset","value":"0","description":"Optional. Pagination offset. Default: 0.","disabled":true}]},"description":"Returns a filtered, paginated list of Polymarket events, each with a few top-market previews and current prices. Set groupGames=true to represent each sporting fixture by its winner event."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"events\": [\n    {\n      \"active\": true,\n      \"category\": \"crypto\",\n      \"closed\": true,\n      \"description\": \"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\",\n      \"endDate\": \"2024-01-01T00:00:00Z\",\n      \"ended\": true,\n      \"eventId\": 1,\n      \"eventIds\": [\n        1\n      ],\n      \"gameId\": 18432,\n      \"iconUrl\": \"https://polymarket-upload.s3.us-east-2.amazonaws.com/world-soccer-cup-93e5f1d884.jpg\",\n      \"imageUrl\": \"https://polymarket-upload.s3.us-east-2.amazonaws.com/world-soccer-cup-93e5f1d884.jpg\",\n      \"live\": true,\n      \"marketCount\": 1,\n      \"marketPreviews\": [\n        {\n          \"conditionId\": \"0x9b6fef249040fd17e9c107955b37ac2c3e923509b6b0ff01cc463a331ddeb894\",\n          \"groupItemMeta\": {\n            \"primaryColor\": \"#00FF00\",\n            \"shortName\": \"Yes\"\n          },\n          \"groupItemTitle\": \"France\",\n          \"outcomeMeta\": [\n            {\n              \"primaryColor\": \"#00FF00\",\n              \"shortName\": \"Yes\"\n            }\n          ],\n          \"outcomes\": [\n            \"Yes\",\n            \"No\"\n          ],\n          \"question\": \"Will France win the 2026 FIFA World Cup?\",\n          \"resolved\": true,\n          \"volume24hUsdc\": \"1250\",\n          \"winningOutcome\": \"Yes\",\n          \"yesPrice\": 0.1975,\n          \"yesPriceChange24h\": 1.23\n        }\n      ],\n      \"negRisk\": true,\n      \"restricted\": true,\n      \"slug\": \"world-cup-winner\",\n      \"startTime\": \"2024-01-01T00:00:00Z\",\n      \"tags\": [\n        {\n          \"label\": \"NBA\",\n          \"tag\": \"nba\"\n        }\n      ],\n      \"timing\": {\n        \"closedTime\": \"2024-01-01T00:00:00Z\",\n        \"createdAt\": \"2024-01-01T00:00:00Z\",\n        \"creationDate\": \"2024-01-01T00:00:00Z\",\n        \"resolutionEligible\": {\n          \"at\": \"2024-01-01T00:00:00Z\",\n          \"precision\": \"calendar\",\n          \"timeZone\": \"America/New_York\"\n        },\n        \"subjectStart\": {\n          \"at\": \"2024-01-01T00:00:00Z\",\n          \"precision\": \"calendar\",\n          \"timeZone\": \"America/New_York\"\n        }\n      },\n      \"title\": \"World Cup Winner \",\n      \"volume24hChangePct\": 1.23,\n      \"volume24hUsdc\": \"320\",\n      \"volumeUsdc\": \"4582.1\"\n    }\n  ],\n  \"limit\": 2,\n  \"offset\": 0,\n  \"totalCount\": 610092\n}"}],"_postman_id":"ce11e1dd-f9c1-4350-8141-393e986436c0"},{"name":"Get a Polymarket event","id":"a87d994c-3777-49db-bdac-32e53107be5e","request":{"method":"GET","header":[],"url":"https://api.arkm.com/polymarket/events/:eventId","description":"<p>Returns a single Polymarket event by its event ID, along with every active or resolved market in the event. Each market includes its outcomes, current Yes price, 24h volume, resolution status, resolution source, and on-chain question lifecycle. Returns 404 if the event does not exist.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["polymarket","events",":eventId"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"37968da9-c834-4675-ba65-5aa15165fd95","description":{"content":"<p>Required. Required. Polymarket event ID.</p>\n","type":"text/plain"},"type":"any","value":"30615","key":"eventId"}]}},"response":[{"id":"44522264-c1cd-48e1-ac65-1c80550d8455","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/polymarket/events/:eventId","host":["https://api.arkm.com"],"path":["polymarket","events",":eventId"],"variable":[{"key":"eventId","value":"30615","description":"Required. Required. Polymarket event ID."}]},"description":"Returns a single Polymarket event by its event ID, along with every active or resolved market in the event. Each market includes its outcomes, current Yes price, 24h volume, resolution status, resolution source, and on-chain question lifecycle. Returns 404 if the event does not exist."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"event\": {\n    \"active\": true,\n    \"category\": \"crypto\",\n    \"closed\": true,\n    \"description\": \"This market will resolve according to the national team that wins the 2026 FIFA World Cup.\",\n    \"endDate\": \"2024-01-01T00:00:00Z\",\n    \"ended\": true,\n    \"eventId\": 1,\n    \"eventIds\": [\n      1\n    ],\n    \"gameId\": 18432,\n    \"iconUrl\": \"https://polymarket-upload.s3.us-east-2.amazonaws.com/world-soccer-cup-93e5f1d884.jpg\",\n    \"imageUrl\": \"https://polymarket-upload.s3.us-east-2.amazonaws.com/world-soccer-cup-93e5f1d884.jpg\",\n    \"live\": true,\n    \"marketCount\": 1,\n    \"marketPreviews\": [\n      {\n        \"conditionId\": \"0x9b6fef249040fd17e9c107955b37ac2c3e923509b6b0ff01cc463a331ddeb894\",\n        \"groupItemMeta\": {\n          \"primaryColor\": \"#00FF00\",\n          \"shortName\": \"Yes\"\n        },\n        \"groupItemTitle\": \"France\",\n        \"outcomeMeta\": [\n          {\n            \"primaryColor\": \"#00FF00\",\n            \"shortName\": \"Yes\"\n          }\n        ],\n        \"outcomes\": [\n          \"Yes\",\n          \"No\"\n        ],\n        \"question\": \"Will France win the 2026 FIFA World Cup?\",\n        \"resolved\": true,\n        \"volume24hUsdc\": \"1250\",\n        \"winningOutcome\": \"Yes\",\n        \"yesPrice\": 0.1975,\n        \"yesPriceChange24h\": 1.23\n      }\n    ],\n    \"negRisk\": true,\n    \"restricted\": true,\n    \"slug\": \"world-cup-winner\",\n    \"startTime\": \"2024-01-01T00:00:00Z\",\n    \"tags\": [\n      {\n        \"label\": \"NBA\",\n        \"tag\": \"nba\"\n      }\n    ],\n    \"timing\": {\n      \"closedTime\": \"2024-01-01T00:00:00Z\",\n      \"createdAt\": \"2024-01-01T00:00:00Z\",\n      \"creationDate\": \"2024-01-01T00:00:00Z\",\n      \"resolutionEligible\": {\n        \"at\": \"2024-01-01T00:00:00Z\",\n        \"precision\": \"calendar\",\n        \"timeZone\": \"America/New_York\"\n      },\n      \"subjectStart\": {\n        \"at\": \"2024-01-01T00:00:00Z\",\n        \"precision\": \"calendar\",\n        \"timeZone\": \"America/New_York\"\n      }\n    },\n    \"title\": \"World Cup Winner \",\n    \"volume24hChangePct\": 1.23,\n    \"volume24hUsdc\": \"320\",\n    \"volumeUsdc\": \"4582.1\"\n  },\n  \"markets\": [\n    {\n      \"active\": true,\n      \"closed\": true,\n      \"conditionId\": \"0x9b6fef249040fd17e9c107955b37ac2c3e923509b6b0ff01cc463a331ddeb894\",\n      \"endDate\": \"2024-01-01T00:00:00Z\",\n      \"groupItemMeta\": {\n        \"primaryColor\": \"#00FF00\",\n        \"shortName\": \"Yes\"\n      },\n      \"groupItemTitle\": \"France\",\n      \"iconUrl\": \"https://polymarket-upload.s3.us-east-2.amazonaws.com/world-cup-winner-france-flag-20260603-192743.png\",\n      \"imageUrl\": \"https://polymarket-upload.s3.us-east-2.amazonaws.com/world-cup-winner-france-flag-20260603-192743.png\",\n      \"outcomeMeta\": [\n        {\n          \"primaryColor\": \"#00FF00\",\n          \"shortName\": \"Yes\"\n        }\n      ],\n      \"outcomes\": [\n        \"Yes\",\n        \"No\"\n      ],\n      \"question\": \"Will France win the 2026 FIFA World Cup?\",\n      \"resolution\": {\n        \"automaticallyResolved\": true,\n        \"clarifications\": [\n          {\n            \"logIndex\": 1,\n            \"text\": \"abc123\",\n            \"timestamp\": \"2024-01-01T00:00:00Z\",\n            \"transactionHash\": \"abc123\"\n          }\n        ],\n        \"earlyResolutionEnabled\": true,\n        \"lifecycle\": [\n          {\n            \"earlyResolution\": true,\n            \"emergency\": true,\n            \"logIndex\": 1,\n            \"result\": true,\n            \"settledPrice\": \"abc123\",\n            \"timestamp\": \"2024-01-01T00:00:00Z\",\n            \"transactionHash\": \"abc123\",\n            \"type\": \"resolved\"\n          }\n        ],\n        \"oracle\": \"abc123\",\n        \"questionId\": \"abc123\",\n        \"resolvedBy\": \"abc123\",\n        \"rules\": \"abc123\",\n        \"signals\": [\n          \"currently_flagged\"\n        ],\n        \"source\": \"https://data.chain.link/streams/btc-usd\",\n        \"status\": \"proposed\"\n      },\n      \"resolved\": true,\n      \"resolvedAt\": \"2024-01-01T00:00:00Z\",\n      \"restricted\": true,\n      \"slug\": \"will-france-win-the-2026-fifa-world-cup-924\",\n      \"timing\": {\n        \"closedTime\": \"2024-01-01T00:00:00Z\",\n        \"resolutionEligible\": {\n          \"at\": \"2024-01-01T00:00:00Z\",\n          \"precision\": \"calendar\",\n          \"timeZone\": \"America/New_York\"\n        },\n        \"settledAt\": \"2024-01-01T00:00:00Z\"\n      },\n      \"tokenAddresses\": [\n        \"0xef4a0c81fb7b6bc701f41c0da766cd0691e38b5dbf9bb6d096e20d986594942c\"\n      ],\n      \"volumeUsdc\": \"603084.740263\",\n      \"winningOutcome\": \"Yes\",\n      \"yesPrice\": 0.1975\n    }\n  ],\n  \"series\": {\n    \"cadenceSeconds\": 300,\n    \"liveEventId\": 1,\n    \"nextEventId\": 1,\n    \"prevEventId\": 1,\n    \"recurrence\": \"5m\",\n    \"resolutionSource\": \"chainlink-data-streams:BTC/USD\",\n    \"slug\": \"btc-up-or-down-5m\",\n    \"title\": \"BTC Up or Down 5m\",\n    \"underlying\": \"BTC\"\n  }\n}"}],"_postman_id":"a87d994c-3777-49db-bdac-32e53107be5e"},{"name":"Polymarket PnL leaderboard","id":"00d43a2b-30d2-4a43-b2a9-06add2ebda3b","request":{"method":"GET","header":[],"url":"https://api.arkm.com/polymarket/leaderboard","description":"<p>Returns the Polymarket leaderboard ordered by trading PnL plus rewards for a period: 1d, 1w, 1m, or all (default 1d). periodPnl remains trading-only, and periodRewards contains the reward component. Order desc for top traders or asc for worst. Pass an address to also receive that trader's rank.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["polymarket","leaderboard"],"host":["https://api.arkm.com"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Time period: 1d, 1w, 1m, all. Default: 1d</p>\n","type":"text/plain"},"key":"period","value":"1d"},{"disabled":true,"description":{"content":"<p>Optional. Sort order: desc (top traders) or asc (worst traders). Default: desc</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"disabled":true,"description":{"content":"<p>Optional. Max entries (1-200). Default: 100</p>\n","type":"text/plain"},"key":"limit","value":"100"},{"disabled":true,"description":{"content":"<p>Optional. Pagination offset. Default: 0</p>\n","type":"text/plain"},"key":"offset","value":"0"},{"disabled":true,"description":{"content":"<p>Optional. Optional trade address. If set, also returns this user's rank.</p>\n","type":"text/plain"},"key":"address","value":"0xBDDF61Af533fF524D27154e589d2D7A81510C684"}],"variable":[]}},"response":[{"id":"48da1784-585e-40c6-80b0-6e755c0edc1a","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/polymarket/leaderboard","host":["https://api.arkm.com"],"path":["polymarket","leaderboard"],"query":[{"key":"period","value":"1d","description":"Optional. Time period: 1d, 1w, 1m, all. Default: 1d","disabled":true},{"key":"order","value":"asc","description":"Optional. Sort order: desc (top traders) or asc (worst traders). Default: desc","disabled":true},{"key":"limit","value":"100","description":"Optional. Max entries (1-200). Default: 100","disabled":true},{"key":"offset","value":"0","description":"Optional. Pagination offset. Default: 0","disabled":true},{"key":"address","value":"0xBDDF61Af533fF524D27154e589d2D7A81510C684","description":"Optional. Optional trade address. If set, also returns this user's rank.","disabled":true}]},"description":"Returns the Polymarket leaderboard ordered by trading PnL plus rewards for a period: 1d, 1w, 1m, or all (default 1d). periodPnl remains trading-only, and periodRewards contains the reward component. Order desc for top traders or asc for worst. Pass an address to also receive that trader's rank."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"entries\": [\n    {\n      \"periodPnl\": \"1977499.5723378485\",\n      \"periodRewards\": \"1943.2\",\n      \"rank\": 1,\n      \"tags\": [\n        {\n          \"events\": 1284,\n          \"label\": \"Politics\",\n          \"tag\": \"politics\",\n          \"volume\": \"45820.12\"\n        }\n      ],\n      \"tokensTotal\": 216,\n      \"tokensWon\": 98,\n      \"tradeCount\": 8328,\n      \"userAddress\": \"0xf0318C32136c2dB7feC88B84869aEE6A1106C80c\"\n    }\n  ],\n  \"period\": \"1d\",\n  \"sort\": \"asc\",\n  \"userRank\": 1\n}"}],"_postman_id":"00d43a2b-30d2-4a43-b2a9-06add2ebda3b"},{"name":"Polymarket order book","id":"3fd05735-e1f9-4156-81e8-8aae2a4a0659","request":{"method":"GET","header":[],"url":"https://api.arkm.com/polymarket/order-book/:conditionId","description":"<p>Returns the live CLOB order book for each of a market's outcome tokens: bids, asks, and last trade price per side. Returns 404 when the conditionID has no matching tokens.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["polymarket","order-book",":conditionId"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"e4205f55-2679-4536-9ab2-4af39f563a59","description":{"content":"<p>Required. Required. Polymarket condition ID for the market.</p>\n","type":"text/plain"},"type":"any","value":"0x9be56371f6a29d12769b2f196847ee825b9585ebb8bfa042136be031b081eba1","key":"conditionId"}]}},"response":[{"id":"3d72225b-54bc-41a5-9c56-7e21073c6070","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/polymarket/order-book/:conditionId","host":["https://api.arkm.com"],"path":["polymarket","order-book",":conditionId"],"variable":[{"key":"conditionId","value":"0x9be56371f6a29d12769b2f196847ee825b9585ebb8bfa042136be031b081eba1","description":"Required. Required. Polymarket condition ID for the market."}]},"description":"Returns the live CLOB order book for each of a market's outcome tokens: bids, asks, and last trade price per side. Returns 404 when the conditionID has no matching tokens."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"conditionId\": \"0x9be56371f6a29d12769b2f196847ee825b9585ebb8bfa042136be031b081eba1\",\n  \"sides\": [\n    {\n      \"asks\": [\n        {\n          \"price\": \"0.001\",\n          \"size\": \"2743420.3\"\n        }\n      ],\n      \"bids\": [\n        {\n          \"price\": \"0.001\",\n          \"size\": \"2743420.3\"\n        }\n      ],\n      \"lastTradePrice\": \"0.055\",\n      \"outcome\": \"Yes\",\n      \"tokenId\": \"0x7baa312d6393ea83c631fb77b47061651a2a9992c40fcac017009611d6a03df4\"\n    }\n  ]\n}"}],"_postman_id":"3fd05735-e1f9-4156-81e8-8aae2a4a0659"},{"name":"Polymarket PnL chart","id":"2d953b24-d975-490d-8c7f-0ae3b52319d5","request":{"method":"GET","header":[],"url":"https://api.arkm.com/polymarket/pnl/chart?userAddress=0xBDDF61Af533fF524D27154e589d2D7A81510C684","description":"<p>Returns a time series of cumulative PnL for a trade address — portfolio-wide, or for a single market when <code>conditionID</code> is set. Window follows the <code>period</code> preset or an explicit <code>startTime</code>/<code>endTime</code> range.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["polymarket","pnl","chart"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Required. Polymarket trade address (0x + 40 hex chars).</p>\n","type":"text/plain"},"key":"userAddress","value":"0xBDDF61Af533fF524D27154e589d2D7A81510C684"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Market condition ID (0x-prefixed bytes32 hex). Aggregates across all outcome tokens. Omit for portfolio-level PnL.</p>\n","type":"text/plain"},"key":"conditionID","value":"0x9be56371f6a29d12769b2f196847ee825b9585ebb8bfa042136be031b081eba1"},{"disabled":true,"description":{"content":"<p>Optional. Time period: 24h, 7d, 30d, all. Presets auto-shrink to the wallet's available history; all is portfolio-only. Default: 30d</p>\n","type":"text/plain"},"key":"period","value":"24h"},{"disabled":true,"description":{"content":"<p>Optional. Optional Unix timestamp in seconds for start of range. Not supported with period=all. Condition-level custom ranges must be 30 days or less; all condition-level fixed windows must start within the last 30 days.</p>\n","type":"text/plain"},"key":"startTime","value":"1717200000"},{"disabled":true,"description":{"content":"<p>Optional. Optional Unix timestamp in seconds for end of range. For conditionID requests, preset windows derived from endTime must start within the last 30 days.</p>\n","type":"text/plain"},"key":"endTime","value":"1719878400"}],"variable":[]}},"response":[{"id":"af375408-4fa2-43cf-af6c-a3d4ca227abc","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/polymarket/pnl/chart?userAddress=0xBDDF61Af533fF524D27154e589d2D7A81510C684","host":["https://api.arkm.com"],"path":["polymarket","pnl","chart"],"query":[{"key":"userAddress","value":"0xBDDF61Af533fF524D27154e589d2D7A81510C684","description":"Required. Polymarket trade address (0x + 40 hex chars)."},{"key":"conditionID","value":"0x9be56371f6a29d12769b2f196847ee825b9585ebb8bfa042136be031b081eba1","description":"Optional. Optional. Market condition ID (0x-prefixed bytes32 hex). Aggregates across all outcome tokens. Omit for portfolio-level PnL.","disabled":true},{"key":"period","value":"24h","description":"Optional. Time period: 24h, 7d, 30d, all. Presets auto-shrink to the wallet's available history; all is portfolio-only. Default: 30d","disabled":true},{"key":"startTime","value":"1717200000","description":"Optional. Optional Unix timestamp in seconds for start of range. Not supported with period=all. Condition-level custom ranges must be 30 days or less; all condition-level fixed windows must start within the last 30 days.","disabled":true},{"key":"endTime","value":"1719878400","description":"Optional. Optional Unix timestamp in seconds for end of range. For conditionID requests, preset windows derived from endTime must start within the last 30 days.","disabled":true}]},"description":"Returns a time series of cumulative PnL for a trade address — portfolio-wide, or for a single market when `conditionID` is set. Window follows the `period` preset or an explicit `startTime`/`endTime` range."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"conditionId\": \"0x9be56371f6a29d12769b2f196847ee825b9585ebb8bfa042136be031b081eba1\",\n  \"endTime\": \"2026-06-22T13:29:45.975416489Z\",\n  \"interval\": \"4h\",\n  \"points\": [\n    {\n      \"bucket\": \"2026-05-23T12:00:00Z\",\n      \"cumulativeFees\": \"0\",\n      \"cumulativePnl\": \"1510462.284030093\",\n      \"cumulativePosition\": \"61565194.136166093\",\n      \"cumulativeRewards\": \"1943.20\",\n      \"cumulativeUsdcFlow\": \"-60054731.852136\",\n      \"price\": 1.23\n    }\n  ],\n  \"question\": \"Will Netherlands win the 2026 FIFA World Cup?\",\n  \"startTime\": \"2026-05-23T13:29:45.975416489Z\",\n  \"userAddress\": \"0xBDDF61Af533fF524D27154e589d2D7A81510C684\"\n}"}],"_postman_id":"2d953b24-d975-490d-8c7f-0ae3b52319d5"},{"name":"Polymarket user positions","id":"4e8a321d-fda4-4fc7-82f9-b0ffaeed9701","request":{"method":"GET","header":[],"url":"https://api.arkm.com/polymarket/positions/:addr","description":"<p>Returns a trade address's current open positions, one row per outcome token, with net position, net USDC flow, last price, and unrealized PnL. Sort by trades (default), shares, value, or pnl. Supports offset pagination.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["polymarket","positions",":addr"],"host":["https://api.arkm.com"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Column to order by: trades (default), shares, value, pnl.</p>\n","type":"text/plain"},"key":"sortBy","value":"trades"},{"disabled":true,"description":{"content":"<p>Optional. Sort direction: asc or desc (default).</p>\n","type":"text/plain"},"key":"sortOrder","value":"asc"},{"disabled":true,"description":{"content":"<p>Optional. Max results (default 50, max 1000).</p>\n","type":"text/plain"},"key":"limit","value":"50"},{"disabled":true,"description":{"content":"<p>Optional. Offset for pagination (default 0).</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[{"id":"8f707448-f453-46af-bfb6-14a7ac508f99","description":{"content":"<p>Required. Required. Polymarket trade address (0x + 40 hex chars).</p>\n","type":"text/plain"},"type":"any","value":"0xBDDF61Af533fF524D27154e589d2D7A81510C684","key":"addr"}]}},"response":[{"id":"cf6bac2b-d985-49ac-9618-cd76fb8c0ef0","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/polymarket/positions/:addr","host":["https://api.arkm.com"],"path":["polymarket","positions",":addr"],"query":[{"key":"sortBy","value":"trades","description":"Optional. Column to order by: trades (default), shares, value, pnl.","disabled":true},{"key":"sortOrder","value":"asc","description":"Optional. Sort direction: asc or desc (default).","disabled":true},{"key":"limit","value":"50","description":"Optional. Max results (default 50, max 1000).","disabled":true},{"key":"offset","value":"0","description":"Optional. Offset for pagination (default 0).","disabled":true}],"variable":[{"key":"addr","value":"0xBDDF61Af533fF524D27154e589d2D7A81510C684","description":"Required. Required. Polymarket trade address (0x + 40 hex chars)."}]},"description":"Returns a trade address's current open positions, one row per outcome token, with net position, net USDC flow, last price, and unrealized PnL. Sort by trades (default), shares, value, or pnl. Supports offset pagination."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"positions\": [\n    {\n      \"conditionId\": \"0xf950740bc71136155d6525cc0528a582c81f88812bff227803190c32ca25f54d\",\n      \"eventId\": 30615,\n      \"groupItemTitle\": \"Scotland\",\n      \"imageUrl\": \"https://polymarket-upload.s3.us-east-2.amazonaws.com/world-cup-winner-scotland-flag-20260603-192743.png\",\n      \"lastPrice\": 0.0015,\n      \"netFlowUsdc\": \"-7203.950016\",\n      \"netPosition\": \"7328182.072224\",\n      \"outcome\": \"Yes\",\n      \"question\": \"Will Scotland win the 2026 FIFA World Cup?\",\n      \"tokenAddress\": \"0xe8b2a357b32729bae06a8a3ac122d8202412f84a849a447a6afff7e75fd3d636\",\n      \"totalTrades\": 11468,\n      \"unrealizedPnl\": \"3788.323092336\"\n    }\n  ],\n  \"totalCount\": 58,\n  \"userAddress\": \"0xBDDF61Af533fF524D27154e589d2D7A81510C684\"\n}"}],"_postman_id":"4e8a321d-fda4-4fc7-82f9-b0ffaeed9701"},{"name":"Polymarket price history","id":"1217a58b-91b9-439d-8d57-2caeaef97473","request":{"method":"GET","header":[],"url":"https://api.arkm.com/polymarket/prices?tokenAddress=0x7baa312d6393ea83c631fb77b47061651a2a9992c40fcac017009611d6a03df4","description":"<p>Returns a midprice time series for a single Polymarket outcome token, identified by either <code>tokenAddress</code> or <code>conditionID</code> (not both).</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["polymarket","prices"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Optional. Polymarket token address (0x-prefixed hex). Provide exactly one of tokenAddress or conditionID.</p>\n","type":"text/plain"},"key":"tokenAddress","value":"0x7baa312d6393ea83c631fb77b47061651a2a9992c40fcac017009611d6a03df4"},{"disabled":true,"description":{"content":"<p>Optional. Market condition ID (0x-prefixed bytes32 hex). Returns prices for the first outcome (outcome_index=0) token. Provide exactly one of tokenAddress or conditionID.</p>\n","type":"text/plain"},"key":"conditionID","value":"0x9be56371f6a29d12769b2f196847ee825b9585ebb8bfa042136be031b081eba1"},{"disabled":true,"description":{"content":"<p>Optional. Price interval: 1s, 5s, 1m, 1h, 1d, auto. Default: 1h. 1s and 5s require startTime and endTime, with a maximum 2-hour span, and return a dense series carrying the last price forward across quiet periods.</p>\n","type":"text/plain"},"key":"interval","value":"1m"},{"disabled":true,"description":{"content":"<p>Optional. Window selector anchored on the token's last bucket: 1d, 1w, 1m, all. Server picks the granularity. Overrides startTime, endTime and interval except interval=1s or interval=5s, which cannot be combined with range.</p>\n","type":"text/plain"},"key":"range","value":"1d"},{"disabled":true,"description":{"content":"<p>Optional. Optional Unix timestamp in seconds for start of range. Ignored when range is set.</p>\n","type":"text/plain"},"key":"startTime","value":"1717200000"},{"disabled":true,"description":{"content":"<p>Optional. Optional Unix timestamp in seconds for end of range. Ignored when range is set.</p>\n","type":"text/plain"},"key":"endTime","value":"1719878400"},{"disabled":true,"description":{"content":"<p>Optional. Max number of price points to return (1-7500). Default: 500, or 7500 for interval=1s and interval=5s. When the requested window holds more points than limit, the newest points are returned.</p>\n","type":"text/plain"},"key":"limit","value":"500"}],"variable":[]}},"response":[{"id":"b964233d-74de-45a1-8b46-95eddc2f1e64","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/polymarket/prices?tokenAddress=0x7baa312d6393ea83c631fb77b47061651a2a9992c40fcac017009611d6a03df4","host":["https://api.arkm.com"],"path":["polymarket","prices"],"query":[{"key":"tokenAddress","value":"0x7baa312d6393ea83c631fb77b47061651a2a9992c40fcac017009611d6a03df4","description":"Optional. Polymarket token address (0x-prefixed hex). Provide exactly one of tokenAddress or conditionID."},{"key":"conditionID","value":"0x9be56371f6a29d12769b2f196847ee825b9585ebb8bfa042136be031b081eba1","description":"Optional. Market condition ID (0x-prefixed bytes32 hex). Returns prices for the first outcome (outcome_index=0) token. Provide exactly one of tokenAddress or conditionID.","disabled":true},{"key":"interval","value":"1m","description":"Optional. Price interval: 1s, 5s, 1m, 1h, 1d, auto. Default: 1h. 1s and 5s require startTime and endTime, with a maximum 2-hour span, and return a dense series carrying the last price forward across quiet periods.","disabled":true},{"key":"range","value":"1d","description":"Optional. Window selector anchored on the token's last bucket: 1d, 1w, 1m, all. Server picks the granularity. Overrides startTime, endTime and interval except interval=1s or interval=5s, which cannot be combined with range.","disabled":true},{"key":"startTime","value":"1717200000","description":"Optional. Optional Unix timestamp in seconds for start of range. Ignored when range is set.","disabled":true},{"key":"endTime","value":"1719878400","description":"Optional. Optional Unix timestamp in seconds for end of range. Ignored when range is set.","disabled":true},{"key":"limit","value":"500","description":"Optional. Max number of price points to return (1-7500). Default: 500, or 7500 for interval=1s and interval=5s. When the requested window holds more points than limit, the newest points are returned.","disabled":true}]},"description":"Returns a midprice time series for a single Polymarket outcome token, identified by either `tokenAddress` or `conditionID` (not both)."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"conditionId\": \"0x9be56371f6a29d12769b2f196847ee825b9585ebb8bfa042136be031b081eba1\",\n  \"endTime\": \"2026-06-22T13:29:53.260946519Z\",\n  \"interval\": \"1h\",\n  \"prices\": [\n    {\n      \"bucketStart\": \"2026-06-22T12:00:00Z\",\n      \"price\": 0.0545\n    }\n  ],\n  \"startTime\": \"2024-01-01T00:00:00Z\",\n  \"tokenAddress\": \"0x7baa312d6393ea83c631fb77b47061651a2a9992c40fcac017009611d6a03df4\"\n}"}],"_postman_id":"1217a58b-91b9-439d-8d57-2caeaef97473"},{"name":"Polymarket platform stats","id":"a1fff3a1-f62f-419d-92d9-6f61644f7e61","request":{"method":"GET","header":[],"url":"https://api.arkm.com/polymarket/stats","description":"<p>Returns global Polymarket platform statistics: total volume, 24h volume, total traders, active and resolved market counts, and total trades.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["polymarket","stats"],"host":["https://api.arkm.com"],"query":[],"variable":[]}},"response":[{"id":"809a1c51-0190-4867-8ad0-40c5bd8a1bdb","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.arkm.com/polymarket/stats","description":"Returns global Polymarket platform statistics: total volume, 24h volume, total traders, active and resolved market counts, and total trades."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"activeMarkets\": 42344,\n  \"resolvedMarkets\": 1626032,\n  \"totalTraders\": 2955552,\n  \"totalTrades\": 1541962785,\n  \"totalVolume\": \"74031837587.746668\",\n  \"volume24h\": \"320610637.818212\"\n}"}],"_postman_id":"a1fff3a1-f62f-419d-92d9-6f61644f7e61"},{"name":"Polymarket top events leaderboard","id":"045ddb9c-7e1b-4542-b4f2-c9d025ce049c","request":{"method":"GET","header":[],"url":"https://api.arkm.com/polymarket/top-events","description":"<p>Returns the top (trader, event) entries by PnL for a period: 1d, 1w, 1m, or all (default 1d). Each entry sums a trader's PnL across every market within a single Polymarket event. Order desc for top wins or asc for top losses.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["polymarket","top-events"],"host":["https://api.arkm.com"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Time period: 1d, 1w, 1m, all. Default: 1d</p>\n","type":"text/plain"},"key":"period","value":"1d"},{"disabled":true,"description":{"content":"<p>Optional. Sort order: desc (top wins) or asc (top losses). Default: desc</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"disabled":true,"description":{"content":"<p>Optional. Max entries (1-200). Default: 100</p>\n","type":"text/plain"},"key":"limit","value":"100"},{"disabled":true,"description":{"content":"<p>Optional. Pagination offset. Default: 0</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[]}},"response":[{"id":"c42ab734-fc5a-4c85-90b8-3febd32a2f01","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/polymarket/top-events","host":["https://api.arkm.com"],"path":["polymarket","top-events"],"query":[{"key":"period","value":"1d","description":"Optional. Time period: 1d, 1w, 1m, all. Default: 1d","disabled":true},{"key":"order","value":"asc","description":"Optional. Sort order: desc (top wins) or asc (top losses). Default: desc","disabled":true},{"key":"limit","value":"100","description":"Optional. Max entries (1-200). Default: 100","disabled":true},{"key":"offset","value":"0","description":"Optional. Pagination offset. Default: 0","disabled":true}]},"description":"Returns the top (trader, event) entries by PnL for a period: 1d, 1w, 1m, or all (default 1d). Each entry sums a trader's PnL across every market within a single Polymarket event. Order desc for top wins or asc for top losses."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"eventId\": 511447,\n    \"eventTitle\": \"Belgium vs. IR Iran - More Markets\",\n    \"iconUrl\": \"https://polymarket-upload.s3.us-east-2.amazonaws.com/soccer ball-bba4025f77.png\",\n    \"imageUrl\": \"https://polymarket-upload.s3.us-east-2.amazonaws.com/soccer ball-bba4025f77.png\",\n    \"periodPnl\": \"1242863.7688589205\",\n    \"rank\": 1,\n    \"tradeCount\": 3311,\n    \"userAddress\": \"0x204f72f35326db932158CBA6AdfF0B9A1DA95e14\"\n  }\n]"}],"_postman_id":"045ddb9c-7e1b-4542-b4f2-c9d025ce049c"},{"name":"Polymarket top event breakdown","id":"590fa806-e72c-48db-b982-72000079ca39","request":{"method":"GET","header":[],"url":"https://api.arkm.com/polymarket/top-events/:eventId/breakdown?address=0xBDDF61Af533fF524D27154e589d2D7A81510C684","description":"<p>Returns the per-market PnL breakdown for a single trader within one event over a period (1d, 1w, 1m, all; default 1d). Each row is one market in the event with its PnL and trade count; markets with exactly zero PnL are omitted. The address query parameter is required.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["polymarket","top-events",":eventId","breakdown"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Required. Polymarket trader address.</p>\n","type":"text/plain"},"key":"address","value":"0xBDDF61Af533fF524D27154e589d2D7A81510C684"},{"disabled":true,"description":{"content":"<p>Optional. Period: 1d, 1w, 1m, all. Default: 1d.</p>\n","type":"text/plain"},"key":"period","value":"1d"}],"variable":[{"id":"dafe44cf-9441-43e3-8c13-fa8a3bb6ff0e","description":{"content":"<p>Required. Polymarket event ID.</p>\n","type":"text/plain"},"type":"any","value":"30615","key":"eventId"}]}},"response":[{"id":"e941647b-495f-4788-9300-a1d848658650","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/polymarket/top-events/:eventId/breakdown?address=0xBDDF61Af533fF524D27154e589d2D7A81510C684","host":["https://api.arkm.com"],"path":["polymarket","top-events",":eventId","breakdown"],"query":[{"key":"address","value":"0xBDDF61Af533fF524D27154e589d2D7A81510C684","description":"Required. Polymarket trader address."},{"key":"period","value":"1d","description":"Optional. Period: 1d, 1w, 1m, all. Default: 1d.","disabled":true}],"variable":[{"key":"eventId","value":"30615","description":"Required. Polymarket event ID."}]},"description":"Returns the per-market PnL breakdown for a single trader within one event over a period (1d, 1w, 1m, all; default 1d). Each row is one market in the event with its PnL and trade count; markets with exactly zero PnL are omitted. The address query parameter is required."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"eventId\": 30615,\n  \"eventTitle\": \"World Cup Winner\",\n  \"markets\": [\n    {\n      \"conditionId\": \"0x881a3ffa618b6ae0ab95a5637e310afb1afc2d99c921bfe3235b15eccfce0344\",\n      \"groupItemTitle\": \"Ghana\",\n      \"imageUrl\": \"https://polymarket-upload.s3.us-east-2.amazonaws.com/world-cup-winner-ghana-flag-20260603-192743.png\",\n      \"periodPnl\": \"3748.1328272\",\n      \"question\": \"Will Ghana win the 2026 FIFA World Cup?\",\n      \"tradeCount\": 6\n    }\n  ],\n  \"userAddress\": \"0xBDDF61Af533fF524D27154e589d2D7A81510C684\"\n}"}],"_postman_id":"590fa806-e72c-48db-b982-72000079ca39"},{"name":"Polymarket market top holders","id":"e15ebddb-c45c-4eea-b5bb-4ee43c1e2927","request":{"method":"GET","header":[],"url":"https://api.arkm.com/polymarket/top-holders/:conditionId","description":"<p>Returns the largest position holders for a market, ranked by net position, each with their per-token positions and net USDC flow. Optionally narrow to a single outcome (0 for Yes, 1 for No). Returns 404 when the conditionID has no matching tokens.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["polymarket","top-holders",":conditionId"],"host":["https://api.arkm.com"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Max entries to return (1-100). Default: 20.</p>\n","type":"text/plain"},"key":"limit","value":"100"},{"disabled":true,"description":{"content":"<p>Optional. Optional. 0 for Yes token, 1 for No token. Omit for all tokens.</p>\n","type":"text/plain"},"key":"outcome","value":"0"}],"variable":[{"id":"3c263d6a-f805-4927-86de-4e01c97c1b7a","description":{"content":"<p>Required. Required. Polymarket condition ID for the market.</p>\n","type":"text/plain"},"type":"any","value":"0x9be56371f6a29d12769b2f196847ee825b9585ebb8bfa042136be031b081eba1","key":"conditionId"}]}},"response":[{"id":"ff597d70-d1b3-4087-8744-f2d0ca2de5fd","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/polymarket/top-holders/:conditionId","host":["https://api.arkm.com"],"path":["polymarket","top-holders",":conditionId"],"query":[{"key":"limit","value":"100","description":"Optional. Max entries to return (1-100). Default: 20.","disabled":true},{"key":"outcome","value":"0","description":"Optional. Optional. 0 for Yes token, 1 for No token. Omit for all tokens.","disabled":true}],"variable":[{"key":"conditionId","value":"0x9be56371f6a29d12769b2f196847ee825b9585ebb8bfa042136be031b081eba1","description":"Required. Required. Polymarket condition ID for the market."}]},"description":"Returns the largest position holders for a market, ranked by net position, each with their per-token positions and net USDC flow. Optionally narrow to a single outcome (0 for Yes, 1 for No). Returns 404 when the conditionID has no matching tokens."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"conditionId\": \"0x9be56371f6a29d12769b2f196847ee825b9585ebb8bfa042136be031b081eba1\",\n  \"holders\": [\n    {\n      \"netFlowUsdc\": \"0\",\n      \"netPosition\": \"800000\",\n      \"positions\": [\n        {\n          \"conditionId\": \"0x9be56371f6a29d12769b2f196847ee825b9585ebb8bfa042136be031b081eba1\",\n          \"groupItemTitle\": \"Netherlands\",\n          \"netFlowUsdc\": \"0\",\n          \"netPosition\": \"800000\",\n          \"outcome\": \"Yes\",\n          \"question\": \"Will Netherlands win the 2026 FIFA World Cup?\",\n          \"tokenAddress\": \"0x7baa312d6393ea83c631fb77b47061651a2a9992c40fcac017009611d6a03df4\"\n        }\n      ],\n      \"totalTrades\": 0,\n      \"userAddress\": \"0x2c335066FE58fe9237c3d3Dc7b275C2a034a0563\"\n    }\n  ]\n}"}],"_postman_id":"e15ebddb-c45c-4eea-b5bb-4ee43c1e2927"},{"name":"Polymarket wallet event history","id":"bad70914-cb43-44bb-a92b-5e14286ef407","request":{"method":"GET","header":[],"url":"https://api.arkm.com/polymarket/wallet/:addr/event-history?status=open","description":"<p>Returns a trade address's positions grouped by Polymarket event, with explicit resolution-eligibility timing, aggregate volume, value, buy/sell totals and share-weighted average prices, PnL, and market counts. Events with one outcome-token position include it as singlePosition. The legacy endDate sort orders by resolution eligibility.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["polymarket","wallet",":addr","event-history"],"host":["https://api.arkm.com"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Results per page (1-100, default 20).</p>\n","type":"text/plain"},"key":"limit","value":"20"},{"disabled":true,"description":{"content":"<p>Optional. Offset for pagination (default 0).</p>\n","type":"text/plain"},"key":"offset","value":"0"},{"disabled":true,"description":{"content":"<p>Optional. Sort field: value, volume, trades, pnl, buyUsd, sellUsd, or endDate (resolution eligibility). Default: pnl. When status=closed, value is not available.</p>\n","type":"text/plain"},"key":"sort","value":"pnl"},{"disabled":true,"description":{"content":"<p>Optional. Sort order: asc or desc. Default: desc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Filter to one Polymarket event.</p>\n","type":"text/plain"},"key":"eventID","value":"30615"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Search event titles.</p>\n","type":"text/plain"},"key":"search","value":"world cup"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Filter events to a curated category.</p>\n","type":"text/plain"},"key":"category","value":"sports"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Minimum aggregate trade count.</p>\n","type":"text/plain"},"key":"minTrades","value":"1"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Maximum aggregate trade count.</p>\n","type":"text/plain"},"key":"maxTrades","value":"100"},{"disabled":true,"description":{"content":"<p>Optional. Minimum aggregate volume in whole USD.</p>\n","type":"text/plain"},"key":"minVolume","value":"100"},{"disabled":true,"description":{"content":"<p>Optional. Maximum aggregate volume in whole USD.</p>\n","type":"text/plain"},"key":"maxVolume","value":"10000"},{"disabled":true,"description":{"content":"<p>Optional. Minimum aggregate current value in whole USD. Open positions only.</p>\n","type":"text/plain"},"key":"minValue","value":"100"},{"disabled":true,"description":{"content":"<p>Optional. Maximum aggregate current value in whole USD. Open positions only.</p>\n","type":"text/plain"},"key":"maxValue","value":"10000"},{"disabled":true,"description":{"content":"<p>Optional. Minimum aggregate PnL in whole USD (can be negative).</p>\n","type":"text/plain"},"key":"minPnl","value":"-100"},{"disabled":true,"description":{"content":"<p>Optional. Maximum aggregate PnL in whole USD (can be negative).</p>\n","type":"text/plain"},"key":"maxPnl","value":"500"},{"disabled":true,"description":{"content":"<p>Optional. Minimum aggregate buy amount in whole USD.</p>\n","type":"text/plain"},"key":"minTotalBuyUsdc","value":"100"},{"disabled":true,"description":{"content":"<p>Optional. Maximum aggregate buy amount in whole USD.</p>\n","type":"text/plain"},"key":"maxTotalBuyUsdc","value":"10000"},{"disabled":true,"description":{"content":"<p>Optional. Minimum aggregate sell amount in whole USD.</p>\n","type":"text/plain"},"key":"minTotalSellUsdc","value":"100"},{"disabled":true,"description":{"content":"<p>Optional. Maximum aggregate sell amount in whole USD.</p>\n","type":"text/plain"},"key":"maxTotalSellUsdc","value":"10000"},{"description":{"content":"<p>Required. Required. Position state: open or closed.</p>\n","type":"text/plain"},"key":"status","value":"open"}],"variable":[{"id":"e0083eed-9554-44cf-b2ca-d30955477ac4","description":{"content":"<p>Required. Required. Polymarket trade address (0x + 40 hex chars).</p>\n","type":"text/plain"},"type":"any","value":"0xBDDF61Af533fF524D27154e589d2D7A81510C684","key":"addr"}]}},"response":[{"id":"176b7f92-99e3-4c52-bebd-f912d57a0b3c","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/polymarket/wallet/:addr/event-history?status=open","host":["https://api.arkm.com"],"path":["polymarket","wallet",":addr","event-history"],"query":[{"key":"limit","value":"20","description":"Optional. Results per page (1-100, default 20).","disabled":true},{"key":"offset","value":"0","description":"Optional. Offset for pagination (default 0).","disabled":true},{"key":"sort","value":"pnl","description":"Optional. Sort field: value, volume, trades, pnl, buyUsd, sellUsd, or endDate (resolution eligibility). Default: pnl. When status=closed, value is not available.","disabled":true},{"key":"order","value":"asc","description":"Optional. Sort order: asc or desc. Default: desc.","disabled":true},{"key":"eventID","value":"30615","description":"Optional. Optional. Filter to one Polymarket event.","disabled":true},{"key":"search","value":"world cup","description":"Optional. Optional. Search event titles.","disabled":true},{"key":"category","value":"sports","description":"Optional. Optional. Filter events to a curated category.","disabled":true},{"key":"minTrades","value":"1","description":"Optional. Optional. Minimum aggregate trade count.","disabled":true},{"key":"maxTrades","value":"100","description":"Optional. Optional. Maximum aggregate trade count.","disabled":true},{"key":"minVolume","value":"100","description":"Optional. Minimum aggregate volume in whole USD.","disabled":true},{"key":"maxVolume","value":"10000","description":"Optional. Maximum aggregate volume in whole USD.","disabled":true},{"key":"minValue","value":"100","description":"Optional. Minimum aggregate current value in whole USD. Open positions only.","disabled":true},{"key":"maxValue","value":"10000","description":"Optional. Maximum aggregate current value in whole USD. Open positions only.","disabled":true},{"key":"minPnl","value":"-100","description":"Optional. Minimum aggregate PnL in whole USD (can be negative).","disabled":true},{"key":"maxPnl","value":"500","description":"Optional. Maximum aggregate PnL in whole USD (can be negative).","disabled":true},{"key":"minTotalBuyUsdc","value":"100","description":"Optional. Minimum aggregate buy amount in whole USD.","disabled":true},{"key":"maxTotalBuyUsdc","value":"10000","description":"Optional. Maximum aggregate buy amount in whole USD.","disabled":true},{"key":"minTotalSellUsdc","value":"100","description":"Optional. Minimum aggregate sell amount in whole USD.","disabled":true},{"key":"maxTotalSellUsdc","value":"10000","description":"Optional. Maximum aggregate sell amount in whole USD.","disabled":true},{"key":"status","value":"open","description":"Required. Required. Position state: open or closed."}],"variable":[{"key":"addr","value":"0xBDDF61Af533fF524D27154e589d2D7A81510C684","description":"Required. Required. Polymarket trade address (0x + 40 hex chars)."}]},"description":"Returns a trade address's positions grouped by Polymarket event, with explicit resolution-eligibility timing, aggregate volume, value, buy/sell totals and share-weighted average prices, PnL, and market counts. Events with one outcome-token position include it as singlePosition. The legacy endDate sort orders by resolution eligibility."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"events\": [\n    {\n      \"avgBuyPrice\": \"0.34098803308944694087\",\n      \"avgSellPrice\": \"1.00000000000000000000\",\n      \"endDate\": \"2026-07-19T20:00:00Z\",\n      \"eventId\": 401638,\n      \"eventTitle\": \"Chelsea FC vs. Nottingham Forest FC\",\n      \"iconUrl\": \"abc123\",\n      \"imageUrl\": \"abc123\",\n      \"marketCount\": 6,\n      \"pnl\": \"643126.136941\",\n      \"positionCount\": 10,\n      \"singlePosition\": {\n        \"avgBuyPrice\": \"0.34098803308944694087\",\n        \"avgSellPrice\": \"1.00000000000000000000\",\n        \"conditionId\": \"0x0433839be2e0889423ff0a0efae939272899d09c284d309b346d3991d003c4c0\",\n        \"currentPrice\": \"1.00000000000000000000\",\n        \"eventId\": 401638,\n        \"eventTitle\": \"Chelsea FC vs. Nottingham Forest FC\",\n        \"groupItemTitle\": \"Chelsea FC\",\n        \"imageUrl\": \"https://polymarket-upload.s3.us-east-2.amazonaws.com/Repetitive-markets/premier+league.jpg\",\n        \"isResolved\": true,\n        \"netShares\": \"0\",\n        \"outcome\": \"No\",\n        \"pnl\": \"643126.136941\",\n        \"question\": \"Will Chelsea FC win on 2026-05-04?\",\n        \"resolvedAt\": \"2026-05-04T20:20:48Z\",\n        \"sharesHeld\": \"0\",\n        \"tokenAddress\": \"0x5f10f068a11aa7c2f4244d8d71bcfd1ad3f2ed337d916960eb2a660ad380f892\",\n        \"totalBuyUsdc\": \"332768.337261\",\n        \"totalSellUsdc\": \"975894.474202\",\n        \"totalTrades\": 71,\n        \"value\": \"0\",\n        \"volume\": \"332768.337261\"\n      },\n      \"timing\": {\n        \"closedTime\": \"2024-01-01T00:00:00Z\",\n        \"createdAt\": \"2024-01-01T00:00:00Z\",\n        \"creationDate\": \"2024-01-01T00:00:00Z\",\n        \"resolutionEligible\": {\n          \"at\": \"2024-01-01T00:00:00Z\",\n          \"precision\": \"calendar\",\n          \"timeZone\": \"America/New_York\"\n        },\n        \"subjectStart\": {\n          \"at\": \"2024-01-01T00:00:00Z\",\n          \"precision\": \"calendar\",\n          \"timeZone\": \"America/New_York\"\n        }\n      },\n      \"totalBuyUsdc\": \"332768.337261\",\n      \"totalSellUsdc\": \"975894.474202\",\n      \"totalTrades\": 71,\n      \"value\": \"1024.50\",\n      \"volume\": \"332768.337261\"\n    }\n  ],\n  \"hasMore\": true,\n  \"totalCount\": 523,\n  \"userAddress\": \"0xBDDF61Af533fF524D27154e589d2D7A81510C684\"\n}"}],"_postman_id":"bad70914-cb43-44bb-a92b-5e14286ef407"},{"name":"Polymarket prediction history","id":"8bcdf923-3602-4482-b843-b440892be079","request":{"method":"GET","header":[],"url":"https://api.arkm.com/polymarket/wallet/:addr/prediction-history","description":"<p>Returns every market a trade address has traded — one row per outcome token, with volume, value, buy/sell totals, PnL, shares, and resolution status.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["polymarket","wallet",":addr","prediction-history"],"host":["https://api.arkm.com"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Results per page (1-100, default 20).</p>\n","type":"text/plain"},"key":"limit","value":"20"},{"disabled":true,"description":{"content":"<p>Optional. Offset for pagination (default 0).</p>\n","type":"text/plain"},"key":"offset","value":"0"},{"disabled":true,"description":{"content":"<p>Optional. Sort field: value, volume, currentPrice, trades, pnl, shares, buyUsd, avgBuy, sellUsd, avgSell. Default: pnl. When status=closed, the value and currentPrice sort options are not available.</p>\n","type":"text/plain"},"key":"sort","value":"pnl"},{"disabled":true,"description":{"content":"<p>Optional. Sort order: asc or desc. Default: desc.</p>\n","type":"text/plain"},"key":"order","value":"asc"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Filter to a single market condition ID.</p>\n","type":"text/plain"},"key":"conditionID","value":"0x9be56371f6a29d12769b2f196847ee825b9585ebb8bfa042136be031b081eba1"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Filter to all markets and outcomes in a Polymarket event.</p>\n","type":"text/plain"},"key":"eventID","value":"30615"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Filter to specific outcome token addresses.</p>\n","type":"text/plain"},"key":"tokenAddresses","value":"0x7baa312d6393ea83c631fb77b47061651a2a9992c40fcac017009611d6a03df4"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Search market question, group title, event title, or condition ID.</p>\n","type":"text/plain"},"key":"search","value":"bitcoin"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Minimum trade count.</p>\n","type":"text/plain"},"key":"minTrades","value":"1"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Maximum trade count.</p>\n","type":"text/plain"},"key":"maxTrades","value":"100"},{"disabled":true,"description":{"content":"<p>Optional. Minimum total volume in whole USD.</p>\n","type":"text/plain"},"key":"minVolume","value":"100"},{"disabled":true,"description":{"content":"<p>Optional. Maximum total volume in whole USD.</p>\n","type":"text/plain"},"key":"maxVolume","value":"10000"},{"disabled":true,"description":{"content":"<p>Optional. Minimum current held value in whole USD.</p>\n","type":"text/plain"},"key":"minValue","value":"100"},{"disabled":true,"description":{"content":"<p>Optional. Maximum current held value in whole USD.</p>\n","type":"text/plain"},"key":"maxValue","value":"10000"},{"disabled":true,"description":{"content":"<p>Optional. Minimum current price as a 0-1 fraction.</p>\n","type":"text/plain"},"key":"minCurrentPrice","value":"0.25"},{"disabled":true,"description":{"content":"<p>Optional. Maximum current price as a 0-1 fraction.</p>\n","type":"text/plain"},"key":"maxCurrentPrice","value":"0.75"},{"disabled":true,"description":{"content":"<p>Optional. Minimum PnL in whole USD (can be negative).</p>\n","type":"text/plain"},"key":"minPnl","value":"-100"},{"disabled":true,"description":{"content":"<p>Optional. Maximum PnL in whole USD (can be negative).</p>\n","type":"text/plain"},"key":"maxPnl","value":"500"},{"disabled":true,"description":{"content":"<p>Optional. Minimum total buy amount in whole USD.</p>\n","type":"text/plain"},"key":"minTotalBuyUsdc","value":"100"},{"disabled":true,"description":{"content":"<p>Optional. Maximum total buy amount in whole USD.</p>\n","type":"text/plain"},"key":"maxTotalBuyUsdc","value":"10000"},{"disabled":true,"description":{"content":"<p>Optional. Minimum average buy price as a 0-1 fraction.</p>\n","type":"text/plain"},"key":"minAvgBuyPrice","value":"0.25"},{"disabled":true,"description":{"content":"<p>Optional. Maximum average buy price as a 0-1 fraction.</p>\n","type":"text/plain"},"key":"maxAvgBuyPrice","value":"0.75"},{"disabled":true,"description":{"content":"<p>Optional. Minimum total sell amount in whole USD.</p>\n","type":"text/plain"},"key":"minTotalSellUsdc","value":"100"},{"disabled":true,"description":{"content":"<p>Optional. Maximum total sell amount in whole USD.</p>\n","type":"text/plain"},"key":"maxTotalSellUsdc","value":"10000"},{"disabled":true,"description":{"content":"<p>Optional. Minimum average sell price as a 0-1 fraction.</p>\n","type":"text/plain"},"key":"minAvgSellPrice","value":"0.25"},{"disabled":true,"description":{"content":"<p>Optional. Maximum average sell price as a 0-1 fraction.</p>\n","type":"text/plain"},"key":"maxAvgSellPrice","value":"0.75"},{"disabled":true,"description":{"content":"<p>Optional. Minimum remaining held shares in whole shares.</p>\n","type":"text/plain"},"key":"minSharesHeld","value":"10"},{"disabled":true,"description":{"content":"<p>Optional. Maximum remaining held shares in whole shares.</p>\n","type":"text/plain"},"key":"maxSharesHeld","value":"500"},{"disabled":true,"description":{"content":"<p>Optional. Optional. Filter by position state: open or closed.</p>\n","type":"text/plain"},"key":"status","value":"open"}],"variable":[{"id":"39a0250d-840e-410b-adf2-e192646ca6a9","description":{"content":"<p>Required. Required. Polymarket trade address (0x + 40 hex chars).</p>\n","type":"text/plain"},"type":"any","value":"0xBDDF61Af533fF524D27154e589d2D7A81510C684","key":"addr"}]}},"response":[{"id":"a6a78023-2b7e-4f4e-9fab-ff2cf4b9f536","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/polymarket/wallet/:addr/prediction-history","host":["https://api.arkm.com"],"path":["polymarket","wallet",":addr","prediction-history"],"query":[{"key":"limit","value":"20","description":"Optional. Results per page (1-100, default 20).","disabled":true},{"key":"offset","value":"0","description":"Optional. Offset for pagination (default 0).","disabled":true},{"key":"sort","value":"pnl","description":"Optional. Sort field: value, volume, currentPrice, trades, pnl, shares, buyUsd, avgBuy, sellUsd, avgSell. Default: pnl. When status=closed, the value and currentPrice sort options are not available.","disabled":true},{"key":"order","value":"asc","description":"Optional. Sort order: asc or desc. Default: desc.","disabled":true},{"key":"conditionID","value":"0x9be56371f6a29d12769b2f196847ee825b9585ebb8bfa042136be031b081eba1","description":"Optional. Optional. Filter to a single market condition ID.","disabled":true},{"key":"eventID","value":"30615","description":"Optional. Optional. Filter to all markets and outcomes in a Polymarket event.","disabled":true},{"key":"tokenAddresses","value":"0x7baa312d6393ea83c631fb77b47061651a2a9992c40fcac017009611d6a03df4","description":"Optional. Optional. Filter to specific outcome token addresses.","disabled":true},{"key":"search","value":"bitcoin","description":"Optional. Optional. Search market question, group title, event title, or condition ID.","disabled":true},{"key":"minTrades","value":"1","description":"Optional. Optional. Minimum trade count.","disabled":true},{"key":"maxTrades","value":"100","description":"Optional. Optional. Maximum trade count.","disabled":true},{"key":"minVolume","value":"100","description":"Optional. Minimum total volume in whole USD.","disabled":true},{"key":"maxVolume","value":"10000","description":"Optional. Maximum total volume in whole USD.","disabled":true},{"key":"minValue","value":"100","description":"Optional. Minimum current held value in whole USD.","disabled":true},{"key":"maxValue","value":"10000","description":"Optional. Maximum current held value in whole USD.","disabled":true},{"key":"minCurrentPrice","value":"0.25","description":"Optional. Minimum current price as a 0-1 fraction.","disabled":true},{"key":"maxCurrentPrice","value":"0.75","description":"Optional. Maximum current price as a 0-1 fraction.","disabled":true},{"key":"minPnl","value":"-100","description":"Optional. Minimum PnL in whole USD (can be negative).","disabled":true},{"key":"maxPnl","value":"500","description":"Optional. Maximum PnL in whole USD (can be negative).","disabled":true},{"key":"minTotalBuyUsdc","value":"100","description":"Optional. Minimum total buy amount in whole USD.","disabled":true},{"key":"maxTotalBuyUsdc","value":"10000","description":"Optional. Maximum total buy amount in whole USD.","disabled":true},{"key":"minAvgBuyPrice","value":"0.25","description":"Optional. Minimum average buy price as a 0-1 fraction.","disabled":true},{"key":"maxAvgBuyPrice","value":"0.75","description":"Optional. Maximum average buy price as a 0-1 fraction.","disabled":true},{"key":"minTotalSellUsdc","value":"100","description":"Optional. Minimum total sell amount in whole USD.","disabled":true},{"key":"maxTotalSellUsdc","value":"10000","description":"Optional. Maximum total sell amount in whole USD.","disabled":true},{"key":"minAvgSellPrice","value":"0.25","description":"Optional. Minimum average sell price as a 0-1 fraction.","disabled":true},{"key":"maxAvgSellPrice","value":"0.75","description":"Optional. Maximum average sell price as a 0-1 fraction.","disabled":true},{"key":"minSharesHeld","value":"10","description":"Optional. Minimum remaining held shares in whole shares.","disabled":true},{"key":"maxSharesHeld","value":"500","description":"Optional. Maximum remaining held shares in whole shares.","disabled":true},{"key":"status","value":"open","description":"Optional. Optional. Filter by position state: open or closed.","disabled":true}],"variable":[{"key":"addr","value":"0xBDDF61Af533fF524D27154e589d2D7A81510C684","description":"Required. Required. Polymarket trade address (0x + 40 hex chars)."}]},"description":"Returns every market a trade address has traded — one row per outcome token, with volume, value, buy/sell totals, PnL, shares, and resolution status."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"hasMore\": true,\n  \"markets\": [\n    {\n      \"avgBuyPrice\": \"0.34098803308944694087\",\n      \"avgSellPrice\": \"1.00000000000000000000\",\n      \"conditionId\": \"0x0433839be2e0889423ff0a0efae939272899d09c284d309b346d3991d003c4c0\",\n      \"currentPrice\": \"1.00000000000000000000\",\n      \"eventId\": 401638,\n      \"eventTitle\": \"Chelsea FC vs. Nottingham Forest FC\",\n      \"groupItemTitle\": \"Chelsea FC\",\n      \"imageUrl\": \"https://polymarket-upload.s3.us-east-2.amazonaws.com/Repetitive-markets/premier+league.jpg\",\n      \"isResolved\": true,\n      \"netShares\": \"0\",\n      \"outcome\": \"No\",\n      \"pnl\": \"643126.136941\",\n      \"question\": \"Will Chelsea FC win on 2026-05-04?\",\n      \"resolvedAt\": \"2026-05-04T20:20:48Z\",\n      \"sharesHeld\": \"0\",\n      \"tokenAddress\": \"0x5f10f068a11aa7c2f4244d8d71bcfd1ad3f2ed337d916960eb2a660ad380f892\",\n      \"totalBuyUsdc\": \"332768.337261\",\n      \"totalSellUsdc\": \"975894.474202\",\n      \"totalTrades\": 71,\n      \"value\": \"0\",\n      \"volume\": \"332768.337261\"\n    }\n  ],\n  \"totalCount\": 1428,\n  \"totalCountExact\": true,\n  \"userAddress\": \"0xBDDF61Af533fF524D27154e589d2D7A81510C684\"\n}"}],"_postman_id":"8bcdf923-3602-4482-b843-b440892be079"},{"name":"Polymarket wallet collateral balances","id":"4871713e-c615-4b73-ba62-30f67467e03e","request":{"method":"GET","header":[],"url":"https://api.arkm.com/polymarket/wallet/:addr/summary/balance","description":"<p>Returns a trade address's current Polygon USDC.e and pUSD cash balances.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["polymarket","wallet",":addr","summary","balance"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"df73df35-5857-4529-a63e-2b0be7c45856","description":{"content":"<p>Required. Required. Polymarket trade address (0x + 40 hex chars).</p>\n","type":"text/plain"},"type":"any","value":"0xBDDF61Af533fF524D27154e589d2D7A81510C684","key":"addr"}]}},"response":[{"id":"791ad72e-cada-48a5-b6af-e58c583643d2","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/polymarket/wallet/:addr/summary/balance","host":["https://api.arkm.com"],"path":["polymarket","wallet",":addr","summary","balance"],"variable":[{"key":"addr","value":"0xBDDF61Af533fF524D27154e589d2D7A81510C684","description":"Required. Required. Polymarket trade address (0x + 40 hex chars)."}]},"description":"Returns a trade address's current Polygon USDC.e and pUSD cash balances."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"pusdBalance\": \"250.75\",\n  \"usdcBalance\": \"125.50\",\n  \"userAddress\": \"0xBDDF61Af533fF524D27154e589d2D7A81510C684\"\n}"}],"_postman_id":"4871713e-c615-4b73-ba62-30f67467e03e"},{"name":"Polymarket wallet biggest win","id":"57f23cbc-abbd-4b4d-909a-b0bd7ed3e2f0","request":{"method":"GET","header":[],"url":"https://api.arkm.com/polymarket/wallet/:addr/summary/biggest-win","description":"<p>Returns a trade address's largest realized event gain, in USDC, aggregated across all resolved markets in that Polymarket event.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["polymarket","wallet",":addr","summary","biggest-win"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"eda8b87d-6549-4366-b154-d30f04009f39","description":{"content":"<p>Required. Required. Polymarket trade address (0x + 40 hex chars).</p>\n","type":"text/plain"},"type":"any","value":"0xBDDF61Af533fF524D27154e589d2D7A81510C684","key":"addr"}]}},"response":[{"id":"ad1f3039-d849-4990-bd61-ae1d60e7eace","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/polymarket/wallet/:addr/summary/biggest-win","host":["https://api.arkm.com"],"path":["polymarket","wallet",":addr","summary","biggest-win"],"variable":[{"key":"addr","value":"0xBDDF61Af533fF524D27154e589d2D7A81510C684","description":"Required. Required. Polymarket trade address (0x + 40 hex chars)."}]},"description":"Returns a trade address's largest realized event gain, in USDC, aggregated across all resolved markets in that Polymarket event."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"biggestWin\": \"643126.136941\",\n  \"userAddress\": \"0xBDDF61Af533fF524D27154e589d2D7A81510C684\"\n}"}],"_postman_id":"57f23cbc-abbd-4b4d-909a-b0bd7ed3e2f0"},{"name":"Polymarket wallet PnL summary","id":"f665e489-fe6b-4510-ac5b-a8ca2123961f","request":{"method":"GET","header":[],"url":"https://api.arkm.com/polymarket/wallet/:addr/summary/pnl","description":"<p>Returns a trade address's total PnL (open-position plus all-time realized), realized PnL, and counts of unique, won, and total markets traded.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["polymarket","wallet",":addr","summary","pnl"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"e7312fe7-82d9-4ba5-a318-e1b2a9d682f2","description":{"content":"<p>Required. Required. Polymarket trade address (0x + 40 hex chars).</p>\n","type":"text/plain"},"type":"any","value":"0xBDDF61Af533fF524D27154e589d2D7A81510C684","key":"addr"}]}},"response":[{"id":"efb31224-226c-447f-b949-48fe810c57a7","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/polymarket/wallet/:addr/summary/pnl","host":["https://api.arkm.com"],"path":["polymarket","wallet",":addr","summary","pnl"],"variable":[{"key":"addr","value":"0xBDDF61Af533fF524D27154e589d2D7A81510C684","description":"Required. Required. Polymarket trade address (0x + 40 hex chars)."}]},"description":"Returns a trade address's total PnL (open-position plus all-time realized), realized PnL, and counts of unique, won, and total markets traded."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"deployedCapital\": \"1200.5\",\n  \"marketsTotal\": 1428,\n  \"marketsWon\": 695,\n  \"realizedPnl\": \"1173358.66161\",\n  \"totalPnl\": \"1189259.007401233\",\n  \"uniqueMarkets\": 1292,\n  \"userAddress\": \"0xBDDF61Af533fF524D27154e589d2D7A81510C684\"\n}"}],"_postman_id":"f665e489-fe6b-4510-ac5b-a8ca2123961f"},{"name":"Polymarket wallet portfolio","id":"03a8169e-9c88-4e87-8da1-3685044c0caf","request":{"method":"GET","header":[],"url":"https://api.arkm.com/polymarket/wallet/:addr/summary/portfolio","description":"<p>Returns live portfolio state for a trade address: unrealized PnL, total open-position value, and the number of open positions and markets.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["polymarket","wallet",":addr","summary","portfolio"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"5bd005ee-585b-4b49-8ccd-a2157e411b00","description":{"content":"<p>Required. Required. Polymarket trade address (0x + 40 hex chars).</p>\n","type":"text/plain"},"type":"any","value":"0xBDDF61Af533fF524D27154e589d2D7A81510C684","key":"addr"}]}},"response":[{"id":"e4c77d09-651c-45d1-9ab0-222cf2575afd","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/polymarket/wallet/:addr/summary/portfolio","host":["https://api.arkm.com"],"path":["polymarket","wallet",":addr","summary","portfolio"],"variable":[{"key":"addr","value":"0xBDDF61Af533fF524D27154e589d2D7A81510C684","description":"Required. Required. Polymarket trade address (0x + 40 hex chars)."}]},"description":"Returns live portfolio state for a trade address: unrealized PnL, total open-position value, and the number of open positions and markets."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"openMarkets\": 56,\n  \"openPositionValue\": \"503776.5191501625\",\n  \"openPositions\": 58,\n  \"unrealizedPnl\": \"-3469.2627198375\",\n  \"userAddress\": \"0xBDDF61Af533fF524D27154e589d2D7A81510C684\"\n}"}],"_postman_id":"03a8169e-9c88-4e87-8da1-3685044c0caf"},{"name":"Polymarket wallet rewards","id":"92f6317d-a671-4e2f-b5ce-9f60272ae4a8","request":{"method":"GET","header":[],"url":"https://api.arkm.com/polymarket/wallet/:addr/summary/rewards","description":"<p>Returns a trade address's lifetime Polymarket rewards in USD, split across maker rebate, taker rebate, liquidity, yield, and referral programs.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["polymarket","wallet",":addr","summary","rewards"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"7d8c3c7c-0fda-46c2-9799-5346eb9d9aa4","description":{"content":"<p>Required. Required. Polymarket trade address (0x + 40 hex chars).</p>\n","type":"text/plain"},"type":"any","value":"0xBDDF61Af533fF524D27154e589d2D7A81510C684","key":"addr"}]}},"response":[{"id":"80780480-186a-46cd-bb96-b0a8b60d7005","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/polymarket/wallet/:addr/summary/rewards","host":["https://api.arkm.com"],"path":["polymarket","wallet",":addr","summary","rewards"],"variable":[{"key":"addr","value":"0xBDDF61Af533fF524D27154e589d2D7A81510C684","description":"Required. Required. Polymarket trade address (0x + 40 hex chars)."}]},"description":"Returns a trade address's lifetime Polymarket rewards in USD, split across maker rebate, taker rebate, liquidity, yield, and referral programs."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"liquidity\": \"901.55\",\n  \"makerRebate\": \"812.40\",\n  \"referralReward\": \"38.00\",\n  \"takerRebate\": \"103.10\",\n  \"totalRewards\": \"1943.20\",\n  \"userAddress\": \"0xBDDF61Af533fF524D27154e589d2D7A81510C684\",\n  \"yield\": \"88.15\"\n}"}],"_postman_id":"92f6317d-a671-4e2f-b5ce-9f60272ae4a8"},{"name":"Polymarket wallet trading stats","id":"953055bc-5cd4-4ceb-8c7f-7bf597aeca47","request":{"method":"GET","header":[],"url":"https://api.arkm.com/polymarket/wallet/:addr/summary/stats","description":"<p>Returns lifetime trading stats for a trade address: total volume, total fees, total trades, total events, and the timestamp of first activity.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["polymarket","wallet",":addr","summary","stats"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"a34d2fbe-d56a-4db7-9f67-031af406eeff","description":{"content":"<p>Required. Required. Polymarket trade address (0x + 40 hex chars).</p>\n","type":"text/plain"},"type":"any","value":"0xBDDF61Af533fF524D27154e589d2D7A81510C684","key":"addr"}]}},"response":[{"id":"917b8cc1-5c96-4061-8a73-9c9d0df4b828","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/polymarket/wallet/:addr/summary/stats","host":["https://api.arkm.com"],"path":["polymarket","wallet",":addr","summary","stats"],"variable":[{"key":"addr","value":"0xBDDF61Af533fF524D27154e589d2D7A81510C684","description":"Required. Required. Polymarket trade address (0x + 40 hex chars)."}]},"description":"Returns lifetime trading stats for a trade address: total volume, total fees, total trades, total events, and the timestamp of first activity."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"firstActiveAt\": \"2025-11-07T00:00:00Z\",\n  \"totalEvents\": 390337,\n  \"totalFees\": \"70296.03806\",\n  \"totalTrades\": 390337,\n  \"totalVolume\": \"89011677.488757\",\n  \"userAddress\": \"0xBDDF61Af533fF524D27154e589d2D7A81510C684\"\n}"}],"_postman_id":"953055bc-5cd4-4ceb-8c7f-7bf597aeca47"},{"name":"GET /polymarket/wallet/{addr}/tags","id":"abe3af4f-0279-46a6-9c57-57bf8c756ad4","request":{"method":"GET","header":[],"url":"https://api.arkm.com/polymarket/wallet/:addr/tags","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["polymarket","wallet",":addr","tags"],"host":["https://api.arkm.com"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Max tags to return, ranked by gross volume. Default 10, max 50.</p>\n","type":"text/plain"},"key":"limit","value":"1"}],"variable":[{"id":"46479d77-2a5e-4766-b234-42a3d6830d21","description":{"content":"<p>Required. Required. Polymarket trade address (0x + 40 hex chars).</p>\n","type":"text/plain"},"type":"any","value":"0xBDDF61Af533fF524D27154e589d2D7A81510C684","key":"addr"}]}},"response":[{"id":"1ff43158-98c9-4e03-aefc-ef47fdfd3277","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/polymarket/wallet/:addr/tags","host":["https://api.arkm.com"],"path":["polymarket","wallet",":addr","tags"],"query":[{"key":"limit","value":"1","description":"Optional. Max tags to return, ranked by gross volume. Default 10, max 50.","disabled":true}],"variable":[{"key":"addr","value":"0xBDDF61Af533fF524D27154e589d2D7A81510C684","description":"Required. Required. Polymarket trade address (0x + 40 hex chars)."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"tags\": [\n    {\n      \"events\": 1284,\n      \"label\": \"Politics\",\n      \"tag\": \"politics\",\n      \"volume\": \"45820.12\"\n    }\n  ],\n  \"userAddress\": \"0xBDDF61Af533fF524D27154e589d2D7A81510C684\"\n}"}],"_postman_id":"abe3af4f-0279-46a6-9c57-57bf8c756ad4"}],"id":"dbb71364-f9bb-4664-a218-050b24436a8d","_postman_id":"dbb71364-f9bb-4664-a218-050b24436a8d","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}}},{"name":"portfolio","item":[{"name":"Get address portfolio history","id":"b76820ea-eeca-4966-9157-c13530983ac6","request":{"method":"GET","header":[],"url":"https://api.arkm.com/portfolio/address/:address?time=1704067200000&chains=ethereum,bsc,polygon","description":"<p>Retrieves historical portfolio snapshots for the specified address across chains, for the UTC day containing the given time. The response is keyed by chain, then by token pricing ID.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["portfolio","address",":address"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Required. Unix timestamp in milliseconds for the historical snapshot. The time is truncated to the start of the UTC day.</p>\n","type":"text/plain"},"key":"time","value":"1704067200000"},{"description":{"content":"<p>Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,bsc'). If omitted, returns data across all supported chains.</p>\n","type":"text/plain"},"key":"chains","value":"ethereum,bsc,polygon"}],"variable":[{"id":"2a4f9000-edda-48c9-b5fd-dfd6c2ad5852","description":{"content":"<p>Required. The blockchain address to query portfolio history for.</p>\n","type":"text/plain"},"type":"any","value":"0x28C6c06298d514Db089934071355E5743bf21d60","key":"address"}]}},"response":[{"id":"55e0b20d-e699-496d-9de1-f19b8f6fd610","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/portfolio/address/:address?time=1704067200000&chains=ethereum,bsc,polygon","host":["https://api.arkm.com"],"path":["portfolio","address",":address"],"query":[{"key":"time","value":"1704067200000","description":"Required. Unix timestamp in milliseconds for the historical snapshot. The time is truncated to the start of the UTC day."},{"key":"chains","value":"ethereum,bsc,polygon","description":"Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,bsc'). If omitted, returns data across all supported chains."}],"variable":[{"key":"address","value":"0x28C6c06298d514Db089934071355E5743bf21d60","description":"Required. The blockchain address to query portfolio history for."}]},"description":"Retrieves historical portfolio snapshots for the specified address across chains, for the UTC day containing the given time. The response is keyed by chain, then by token pricing ID."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"bsc\": {\n    \"1inch\": {\n      \"balance\": 1112.6200000000001,\n      \"id\": \"1inch\",\n      \"name\": \"1INCH\",\n      \"price\": 0.45496,\n      \"symbol\": \"1inch\",\n      \"usd\": 506.1975952\n    },\n    \"alchemy-pay\": {\n      \"balance\": 10,\n      \"id\": \"alchemy-pay\",\n      \"name\": \"Alchemy Pay\",\n      \"price\": 0.02132812,\n      \"symbol\": \"ach\",\n      \"usd\": 0.2132812\n    }\n  },\n  \"ethereum\": {\n    \"0x\": {\n      \"balance\": 10032515.845947504,\n      \"id\": \"0x\",\n      \"name\": \"0x Protocol\",\n      \"price\": 0.369874,\n      \"symbol\": \"zrx\",\n      \"usd\": 3710766.766003987\n    },\n    \"1inch\": {\n      \"balance\": 6065867.718795477,\n      \"id\": \"1inch\",\n      \"name\": \"1INCH\",\n      \"price\": 0.45496,\n      \"symbol\": \"1inch\",\n      \"usd\": 2759727.17734319\n    }\n  }\n}"}],"_postman_id":"b76820ea-eeca-4966-9157-c13530983ac6"},{"name":"Get entity portfolio history","id":"1ff9d682-c14a-4edd-8ccb-e805e2ae5566","request":{"method":"GET","header":[],"url":"https://api.arkm.com/portfolio/entity/:entity?time=1704067200000&chains=ethereum,bsc,polygon","description":"<p>Retrieves historical portfolio snapshots for the specified entity across chains, for the UTC day containing the given time. The response is keyed by chain, then by token pricing ID.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["portfolio","entity",":entity"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Required. Unix timestamp in milliseconds for the historical snapshot. The time is truncated to the start of the UTC day.</p>\n","type":"text/plain"},"key":"time","value":"1704067200000"},{"description":{"content":"<p>Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,bsc'). If omitted, returns data across all supported chains.</p>\n","type":"text/plain"},"key":"chains","value":"ethereum,bsc,polygon"}],"variable":[{"id":"6e95e646-8864-4812-a1d3-d4fab248e18f","description":{"content":"<p>Required. The entity ID to query portfolio history for. Accepts an Arkham entity ID or a user entity ID.</p>\n","type":"text/plain"},"type":"any","value":"binance","key":"entity"}]}},"response":[{"id":"05d148cf-ae99-4a46-8c58-a18e8cf20aca","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/portfolio/entity/:entity?time=1704067200000&chains=ethereum,bsc,polygon","host":["https://api.arkm.com"],"path":["portfolio","entity",":entity"],"query":[{"key":"time","value":"1704067200000","description":"Required. Unix timestamp in milliseconds for the historical snapshot. The time is truncated to the start of the UTC day."},{"key":"chains","value":"ethereum,bsc,polygon","description":"Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,bsc'). If omitted, returns data across all supported chains."}],"variable":[{"key":"entity","value":"binance","description":"Required. The entity ID to query portfolio history for. Accepts an Arkham entity ID or a user entity ID."}]},"description":"Retrieves historical portfolio snapshots for the specified entity across chains, for the UTC day containing the given time. The response is keyed by chain, then by token pricing ID."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"bsc\": {\n    \"2049\": {\n      \"balance\": 120000,\n      \"id\": \"2049\",\n      \"name\": \"2049\",\n      \"price\": 0.01338244,\n      \"symbol\": \"2049\",\n      \"usd\": 1605.8928\n    },\n    \"aave\": {\n      \"balance\": 311773.5865450922,\n      \"id\": \"aave\",\n      \"name\": \"Aave\",\n      \"price\": 109.13,\n      \"symbol\": \"aave\",\n      \"usd\": 34023851.499665916\n    }\n  },\n  \"ethereum\": {\n    \"0x\": {\n      \"balance\": 72450011.27241233,\n      \"id\": \"0x\",\n      \"name\": \"0x Protocol\",\n      \"price\": 0.369874,\n      \"symbol\": \"zrx\",\n      \"usd\": 26797375.469372235\n    },\n    \"1inch\": {\n      \"balance\": 134991020.98849133,\n      \"id\": \"1inch\",\n      \"name\": \"1INCH\",\n      \"price\": 0.45496,\n      \"symbol\": \"1inch\",\n      \"usd\": 61415514.90892401\n    }\n  }\n}"}],"_postman_id":"1ff9d682-c14a-4edd-8ccb-e805e2ae5566"},{"name":"Get daily time series data for an address's token","id":"2ba6609f-ee00-4e55-85a4-2994f88f33a6","request":{"method":"GET","header":[],"url":"https://api.arkm.com/portfolio/timeSeries/address/:address?pricingId=ethereum&chains=ethereum,bsc,polygon","description":"<p>Returns daily snapshots (in UTC) of the specified address's holdings of a given token. The response is keyed by day (UTC timestamp), then by chain, then by token pricing ID.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["portfolio","timeSeries","address",":address"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Required. The CoinGecko pricing ID of the token to track.</p>\n","type":"text/plain"},"key":"pricingId","value":"ethereum"},{"description":{"content":"<p>Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,arbitrum_one'). If omitted, returns data across all supported chains.</p>\n","type":"text/plain"},"key":"chains","value":"ethereum,bsc,polygon"}],"variable":[{"id":"dc0305f6-c532-4573-a5f6-045242592382","description":{"content":"<p>Required. The blockchain address to query time series data for.</p>\n","type":"text/plain"},"type":"any","value":"0x28C6c06298d514Db089934071355E5743bf21d60","key":"address"}]}},"response":[{"id":"3155ff60-848b-47ce-8a07-7cb8ca0235b8","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/portfolio/timeSeries/address/:address?pricingId=ethereum&chains=ethereum,bsc,polygon","host":["https://api.arkm.com"],"path":["portfolio","timeSeries","address",":address"],"query":[{"key":"pricingId","value":"ethereum","description":"Required. The CoinGecko pricing ID of the token to track."},{"key":"chains","value":"ethereum,bsc,polygon","description":"Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,arbitrum_one'). If omitted, returns data across all supported chains."}],"variable":[{"key":"address","value":"0x28C6c06298d514Db089934071355E5743bf21d60","description":"Required. The blockchain address to query time series data for."}]},"description":"Returns daily snapshots (in UTC) of the specified address's holdings of a given token. The response is keyed by day (UTC timestamp), then by chain, then by token pricing ID."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"2024-11-06T00:00:00Z\": {\n    \"arbitrum_one\": {\n      \"ethereum\": {\n        \"balance\": 0.157982385858176,\n        \"id\": \"ethereum\",\n        \"name\": \"Ethereum\",\n        \"price\": 2423.42,\n        \"symbol\": \"eth\",\n        \"usd\": 382.8576735364209\n      }\n    },\n    \"ethereum\": {\n      \"ethereum\": {\n        \"balance\": 75113.401952444,\n        \"id\": \"ethereum\",\n        \"name\": \"Ethereum\",\n        \"price\": 2423.42,\n        \"symbol\": \"eth\",\n        \"usd\": 182031320.55959183\n      }\n    }\n  }\n}"}],"_postman_id":"2ba6609f-ee00-4e55-85a4-2994f88f33a6"},{"name":"Get daily time series data for an entity's token","id":"da17f505-fb1d-44f9-9093-493ea30e87a8","request":{"method":"GET","header":[],"url":"https://api.arkm.com/portfolio/timeSeries/entity/:entity?pricingId=ethereum&chains=ethereum,bsc,polygon","description":"<p>Returns daily snapshots (in UTC) of the specified entity's holdings of a given token. The response is keyed by day (UTC timestamp), then by chain, then by token pricing ID.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["portfolio","timeSeries","entity",":entity"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Required. The CoinGecko pricing ID of the token to track.</p>\n","type":"text/plain"},"key":"pricingId","value":"ethereum"},{"description":{"content":"<p>Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,arbitrum_one'). If omitted, returns data across all supported chains.</p>\n","type":"text/plain"},"key":"chains","value":"ethereum,bsc,polygon"}],"variable":[{"id":"7e7301e6-59be-4222-99f7-6ed3028e199d","description":{"content":"<p>Required. The entity ID to query time series data for. Accepts an Arkham entity ID or a user entity ID.</p>\n","type":"text/plain"},"type":"any","value":"binance","key":"entity"}]}},"response":[{"id":"6e2aa7f2-9445-406b-9131-0b541500b318","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/portfolio/timeSeries/entity/:entity?pricingId=ethereum&chains=ethereum,bsc,polygon","host":["https://api.arkm.com"],"path":["portfolio","timeSeries","entity",":entity"],"query":[{"key":"pricingId","value":"ethereum","description":"Required. The CoinGecko pricing ID of the token to track."},{"key":"chains","value":"ethereum,bsc,polygon","description":"Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,arbitrum_one'). If omitted, returns data across all supported chains."}],"variable":[{"key":"entity","value":"binance","description":"Required. The entity ID to query time series data for. Accepts an Arkham entity ID or a user entity ID."}]},"description":"Returns daily snapshots (in UTC) of the specified entity's holdings of a given token. The response is keyed by day (UTC timestamp), then by chain, then by token pricing ID."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"2023-07-19T00:00:00Z\": {\n    \"arbitrum_one\": {\n      \"ethereum\": {\n        \"balance\": 111662.52500999894,\n        \"id\": \"ethereum\",\n        \"name\": \"Ethereum\",\n        \"price\": 1897.72,\n        \"symbol\": \"eth\",\n        \"usd\": 211904206.9619752\n      }\n    },\n    \"ethereum\": {\n      \"ethereum\": {\n        \"balance\": 3974214.8732396006,\n        \"id\": \"ethereum\",\n        \"name\": \"Ethereum\",\n        \"price\": 1897.72,\n        \"symbol\": \"eth\",\n        \"usd\": 7541947049.244255\n      }\n    }\n  }\n}"}],"_postman_id":"da17f505-fb1d-44f9-9093-493ea30e87a8"}],"id":"87a72847-1f61-4bdf-8832-4b8da80e0b19","_postman_id":"87a72847-1f61-4bdf-8832-4b8da80e0b19","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}}},{"name":"risk","item":[{"name":"Get risk scores for multiple addresses in one request","id":"ac83856a-0faa-42c3-aa8b-7c45d8ff1e4f","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"addresses\": [\n    \"0x6068A806a62DBb6a42E1A83e17E249bF4f8dB3aB\",\n    \"0x851d8fe098341d5592DbBC7bCd4388F73c16291b\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.arkm.com/risk/address/batch","description":"<p>Batched version of GET /risk/address/{address}. Accepts up to 200 addresses and returns a map keyed by the address the caller sent.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["risk","address","batch"],"host":["https://api.arkm.com"],"query":[],"variable":[]}},"response":[{"id":"9db0ee62-0cba-48b5-905e-29ea92ff4707","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"addresses\": [\n    \"0x6068A806a62DBb6a42E1A83e17E249bF4f8dB3aB\",\n    \"0x851d8fe098341d5592DbBC7bCd4388F73c16291b\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.arkm.com/risk/address/batch","description":"Batched version of GET /risk/address/{address}. Accepts up to 200 addresses and returns a map keyed by the address the caller sent."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"0x6068A806a62DBb6a42E1A83e17E249bF4f8dB3aB\": {\n    \"address\": \"0x6068A806a62DBb6a42E1A83e17E249bF4f8dB3aB\",\n    \"chain_type\": \"evm\",\n    \"greatest_risk_category\": \"hacker\",\n    \"greatest_risk_category_backward\": \"hacker\",\n    \"greatest_risk_category_forward\": \"hacker\",\n    \"hacker_score\": 100,\n    \"hop_distance\": 0,\n    \"is_seed\": true,\n    \"max_hop_reached\": 6,\n    \"max_score\": 100,\n    \"max_score_backward\": 100,\n    \"max_score_forward\": 100,\n    \"risk_level\": \"SEVERE\",\n    \"risk_weighted_incoming_usd\": 1503.019172292983,\n    \"risk_weighted_outgoing_usd\": 0,\n    \"sanctioned_1hop_score\": 100,\n    \"updated_at\": \"2026-07-26T16:41:42Z\"\n  },\n  \"0x851d8fe098341d5592DbBC7bCd4388F73c16291b\": {\n    \"address\": \"0x851d8fe098341d5592DbBC7bCd4388F73c16291b\",\n    \"chain_type\": \"evm\",\n    \"greatest_risk_category\": \"hacker\",\n    \"greatest_risk_category_backward\": \"hacker\",\n    \"greatest_risk_category_forward\": \"hacker\",\n    \"hacker_score\": 100,\n    \"hop_distance\": 0,\n    \"is_seed\": true,\n    \"max_hop_reached\": 5,\n    \"max_score\": 100,\n    \"max_score_backward\": 100,\n    \"max_score_forward\": 100,\n    \"risk_level\": \"SEVERE\",\n    \"risk_weighted_incoming_usd\": 147145.78646919152,\n    \"risk_weighted_outgoing_usd\": 149676.9625347434,\n    \"sanctioned_1hop_score\": 100,\n    \"updated_at\": \"2026-07-26T16:41:42Z\"\n  }\n}"}],"_postman_id":"ac83856a-0faa-42c3-aa8b-7c45d8ff1e4f"},{"name":"Get risk score for an address","id":"e0135c90-54b4-42d7-ac44-6c18206d7635","request":{"method":"GET","header":[],"url":"https://api.arkm.com/risk/address/:address","description":"<p>Returns a compliance risk score for the specified blockchain address, including per-category exposure scores and the sources behind them. A risk_level of NONE means no exposure was identified at or above the reporting threshold.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["risk","address",":address"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"af2bfa5c-9aa1-4cd8-86b6-87c6e9f85eeb","description":{"content":"<p>Required. The blockchain address to query.</p>\n","type":"text/plain"},"type":"any","value":"0x6068A806a62DBb6a42E1A83e17E249bF4f8dB3aB","key":"address"}]}},"response":[{"id":"5caf4796-1b99-4313-bb9d-e94a2e30ff31","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/risk/address/:address","host":["https://api.arkm.com"],"path":["risk","address",":address"],"variable":[{"key":"address","value":"0x6068A806a62DBb6a42E1A83e17E249bF4f8dB3aB","description":"Required. The blockchain address to query."}]},"description":"Returns a compliance risk score for the specified blockchain address, including per-category exposure scores and the sources behind them. A risk_level of NONE means no exposure was identified at or above the reporting threshold."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"address\": \"0x6068A806a62DBb6a42E1A83e17E249bF4f8dB3aB\",\n  \"chain_type\": \"evm\",\n  \"greatest_risk_category\": \"hacker\",\n  \"greatest_risk_category_backward\": \"hacker\",\n  \"greatest_risk_category_forward\": \"hacker\",\n  \"hacker_score\": 100,\n  \"hop_distance\": 0,\n  \"is_seed\": true,\n  \"max_hop_reached\": 6,\n  \"max_score\": 100,\n  \"max_score_backward\": 100,\n  \"max_score_forward\": 100,\n  \"risk_level\": \"SEVERE\",\n  \"risk_weighted_incoming_usd\": 1503.019172292983,\n  \"risk_weighted_outgoing_usd\": 0,\n  \"sanctioned_1hop_score\": 100,\n  \"updated_at\": \"2026-07-25T16:36:34Z\"\n}"}],"_postman_id":"e0135c90-54b4-42d7-ac44-6c18206d7635"},{"name":"Get the transaction paths behind an address's risk score","id":"cf971f8a-c9fd-48d5-bd46-17ef67e61b94","request":{"method":"GET","header":[],"url":"https://api.arkm.com/risk/address/:address/paths","description":"<p>Returns up to 10 transaction paths linking the queried address back to the risky sources behind its score, ordered by the USD value each source contributed. Paths are grouped by chain_type, where all EVM chains report as 'evm'. An address with no traced sources returns an empty paths array.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["risk","address",":address","paths"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"08b2fbc9-5dfb-45d3-b6df-72345dd0999c","description":{"content":"<p>Required. The blockchain address to trace.</p>\n","type":"text/plain"},"type":"any","value":"0x6068A806a62DBb6a42E1A83e17E249bF4f8dB3aB","key":"address"}]}},"response":[{"id":"530904db-253d-4eee-8390-98f9248a7c49","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/risk/address/:address/paths","host":["https://api.arkm.com"],"path":["risk","address",":address","paths"],"variable":[{"key":"address","value":"0x6068A806a62DBb6a42E1A83e17E249bF4f8dB3aB","description":"Required. The blockchain address to trace."}]},"description":"Returns up to 10 transaction paths linking the queried address back to the risky sources behind its score, ordered by the USD value each source contributed. Paths are grouped by chain_type, where all EVM chains report as 'evm'. An address with no traced sources returns an empty paths array."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"address\": \"0x6068A806a62DBb6a42E1A83e17E249bF4f8dB3aB\",\n  \"paths\": [\n    {\n      \"chain_type\": \"evm\",\n      \"contribution_usd\": 1503.019172292983,\n      \"direction\": \"forward\",\n      \"hop_distance\": 2,\n      \"path_nodes\": [\n        {\n          \"address\": \"0xD7A1c15fCb970dD45d1af03fF2E7c6147Dd6c2e2\",\n          \"hop_distance\": 0\n        },\n        {\n          \"address\": \"0x851d8fe098341d5592DbBC7bCd4388F73c16291b\",\n          \"hop_distance\": 1\n        }\n      ],\n      \"risk_category\": \"hacker\",\n      \"score\": 100,\n      \"seed_address\": \"0xD7A1c15fCb970dD45d1af03fF2E7c6147Dd6c2e2\"\n    },\n    {\n      \"chain_type\": \"evm\",\n      \"contribution_usd\": 1503.019172292983,\n      \"direction\": \"forward\",\n      \"hop_distance\": 1,\n      \"path_nodes\": [\n        {\n          \"address\": \"0x851d8fe098341d5592DbBC7bCd4388F73c16291b\",\n          \"hop_distance\": 0\n        },\n        {\n          \"address\": \"0x6068A806a62DBb6a42E1A83e17E249bF4f8dB3aB\",\n          \"hop_distance\": 1\n        }\n      ],\n      \"risk_category\": \"hacker\",\n      \"score\": 100,\n      \"seed_address\": \"0x851d8fe098341d5592DbBC7bCd4388F73c16291b\"\n    }\n  ]\n}"}],"_postman_id":"cf971f8a-c9fd-48d5-bd46-17ef67e61b94"},{"name":"Get risk scores for multiple entities in one request","id":"bb912379-4fd5-413e-acf6-e9da6544edbd","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"entity_ids\": [\n    \"binance\",\n    \"coinbase\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.arkm.com/risk/entity/batch","description":"<p>Batched version of GET /risk/entity/{entity_id}. Accepts up to 200 entity IDs per request. Returns a map keyed by the entity ID you sent, matched exactly — identifiers are case-sensitive, so send each one exactly as Arkham reports it. Use GET /intelligence/search to look up an entity identifier.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["risk","entity","batch"],"host":["https://api.arkm.com"],"query":[],"variable":[]}},"response":[{"id":"89d3be1b-36dd-4571-a284-f9c4f79ec649","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"entity_ids\": [\n    \"binance\",\n    \"coinbase\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.arkm.com/risk/entity/batch","description":"Batched version of GET /risk/entity/{entity_id}. Accepts up to 200 entity IDs per request. Returns a map keyed by the entity ID you sent, matched exactly — identifiers are case-sensitive, so send each one exactly as Arkham reports it. Use GET /intelligence/search to look up an entity identifier."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"binance\": {\n    \"entity_id\": \"binance\",\n    \"entity_name\": \"Binance\",\n    \"entity_type\": \"cex\",\n    \"gambling_score\": 19,\n    \"greatest_risk_category\": \"sanctions\",\n    \"greatest_risk_category_backward\": \"sanctions\",\n    \"greatest_risk_category_forward\": \"sanctions\",\n    \"highest_risk_address\": \"0xC548557AFC52ade64c65716119803a352BC480D2\",\n    \"max_score\": 59,\n    \"max_score_backward\": 100,\n    \"max_score_forward\": 100,\n    \"mixed_kyc_service_score\": 55,\n    \"non_kyc_service_score\": 31,\n    \"risk_level\": \"MEDIUM\",\n    \"risky_addresses\": 6822341,\n    \"risky_addresses_backward\": 248,\n    \"risky_addresses_forward\": 6822341,\n    \"sanctions_score\": 59,\n    \"seed_addresses\": 0,\n    \"token_blacklist_score\": 29,\n    \"top_sources\": [\n      {\n        \"contribution_usd\": 1645468927.9378781,\n        \"direction\": \"forward\",\n        \"hop_distance\": 1,\n        \"risk_category\": \"sanctions\",\n        \"seed_address\": \"TPMF2n3hJLcCwoHq6bwLeVXBbNZgj73AEd\"\n      },\n      {\n        \"contribution_usd\": 636226693.8209434,\n        \"direction\": \"forward\",\n        \"hop_distance\": 1,\n        \"risk_category\": \"sanctions\",\n        \"seed_address\": \"TQ5mpZPbQMSq2s1vSM3RJgiB1AsTsiTpFZ\"\n      }\n    ],\n    \"updated_at\": \"2026-07-26T16:42:41Z\"\n  },\n  \"coinbase\": {\n    \"entity_id\": \"coinbase\",\n    \"entity_name\": \"Coinbase\",\n    \"entity_type\": \"cex\",\n    \"gambling_score\": 13,\n    \"greatest_risk_category\": \"sanctions\",\n    \"greatest_risk_category_backward\": \"sanctions\",\n    \"greatest_risk_category_forward\": \"sanctions\",\n    \"highest_risk_address\": \"0xAeA5fFf07f8f6E2F2E73AAB0f0c78d3Dbc9a63d2\",\n    \"max_score\": 20,\n    \"max_score_backward\": 100,\n    \"max_score_forward\": 100,\n    \"mixed_kyc_service_score\": 19,\n    \"risk_level\": \"LOW\",\n    \"risky_addresses\": 1308976,\n    \"risky_addresses_backward\": 3,\n    \"risky_addresses_forward\": 1308976,\n    \"sanctions_score\": 20,\n    \"seed_addresses\": 0,\n    \"top_sources\": [\n      {\n        \"contribution_usd\": 6367035.310696851,\n        \"direction\": \"forward\",\n        \"hop_distance\": 1,\n        \"risk_category\": \"sanctions\",\n        \"seed_address\": \"0x6b7DC81758483ECF91A14BA263831BfE6989716E\"\n      },\n      {\n        \"contribution_usd\": 5473917.986094957,\n        \"direction\": \"forward\",\n        \"hop_distance\": 1,\n        \"risk_category\": \"sanctions\",\n        \"seed_address\": \"0xa26E9795aF46D9d85762F016664B8d4fE4189a03\"\n      }\n    ],\n    \"updated_at\": \"2026-07-26T16:42:41Z\"\n  }\n}"}],"_postman_id":"bb912379-4fd5-413e-acf6-e9da6544edbd"},{"name":"Get entity-level risk score","id":"c986f06b-97b4-4af3-8560-c9607aa74d0b","request":{"method":"GET","header":[],"url":"https://api.arkm.com/risk/entity/:entity_id","description":"<p>Returns an entity's aggregated risk score, reflecting both the entity's own flagged addresses and how much of its activity connects to known risk sources. It is an entity-level measure rather than the score of any single address, so an individual address may score higher or lower than its entity.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["risk","entity",":entity_id"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"8e14d285-b4e0-4606-b0ae-93f74fb60b64","description":{"content":"<p>Required. The Arkham entity identifier to query, for example 'binance'. Identifiers are case-sensitive and must be sent exactly as Arkham reports them; use GET /intelligence/search to look one up.</p>\n","type":"text/plain"},"type":"any","value":"binance","key":"entity_id"}]}},"response":[{"id":"96497fe2-9668-482f-a9a1-2e7b37e07704","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/risk/entity/:entity_id","host":["https://api.arkm.com"],"path":["risk","entity",":entity_id"],"variable":[{"key":"entity_id","value":"binance","description":"Required. The Arkham entity identifier to query, for example 'binance'. Identifiers are case-sensitive and must be sent exactly as Arkham reports them; use GET /intelligence/search to look one up."}]},"description":"Returns an entity's aggregated risk score, reflecting both the entity's own flagged addresses and how much of its activity connects to known risk sources. It is an entity-level measure rather than the score of any single address, so an individual address may score higher or lower than its entity."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"entity_id\": \"binance\",\n  \"entity_name\": \"Binance\",\n  \"entity_type\": \"cex\",\n  \"gambling_score\": 19,\n  \"greatest_risk_category\": \"sanctions\",\n  \"greatest_risk_category_backward\": \"sanctions\",\n  \"greatest_risk_category_forward\": \"sanctions\",\n  \"highest_risk_address\": \"0x0ABc4C43bE11AC191f013e0A5AB2a10C17146Bce\",\n  \"max_score\": 59,\n  \"max_score_backward\": 100,\n  \"max_score_forward\": 100,\n  \"mixed_kyc_service_score\": 55,\n  \"non_kyc_service_score\": 31,\n  \"risk_level\": \"MEDIUM\",\n  \"risky_addresses\": 6813863,\n  \"risky_addresses_backward\": 248,\n  \"risky_addresses_forward\": 6813863,\n  \"sanctions_score\": 59,\n  \"seed_addresses\": 0,\n  \"token_blacklist_score\": 29,\n  \"top_sources\": [\n    {\n      \"contribution_usd\": 1645468533.8035848,\n      \"direction\": \"forward\",\n      \"hop_distance\": 1,\n      \"risk_category\": \"sanctions\",\n      \"seed_address\": \"TPMF2n3hJLcCwoHq6bwLeVXBbNZgj73AEd\"\n    },\n    {\n      \"contribution_usd\": 636248601.0937977,\n      \"direction\": \"forward\",\n      \"hop_distance\": 1,\n      \"risk_category\": \"sanctions\",\n      \"seed_address\": \"TQ5mpZPbQMSq2s1vSM3RJgiB1AsTsiTpFZ\"\n    }\n  ],\n  \"updated_at\": \"2026-07-25T16:37:42Z\"\n}"}],"_postman_id":"c986f06b-97b4-4af3-8560-c9607aa74d0b"}],"id":"8819685f-5fde-4015-92a2-b82acf3f0339","_postman_id":"8819685f-5fde-4015-92a2-b82acf3f0339","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}}},{"name":"subscription","item":[{"name":"Get intel data usage for the current billing period","id":"6f5dd9be-892b-4b07-8f8b-9819bd020ea8","request":{"method":"GET","header":[],"url":"https://api.arkm.com/subscription/intel-usage","description":"<p>Returns your intel-data consumption for the current billing period, broken down by chain.</p>\n<p>Usage is tracked per seat (the calling user), not account-wide: <code>totalLimit</code> is the limit for your seat and <code>totalCount</code> is the data points your seat has consumed. The response also includes the start of the current period and the per-chain breakdown of usage.</p>\n<p>Returns 503 when usage tracking is unavailable.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["subscription","intel-usage"],"host":["https://api.arkm.com"],"query":[],"variable":[]}},"response":[{"id":"8b572311-9238-4b5c-ae8e-bd5d73948b02","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.arkm.com/subscription/intel-usage","description":"Returns your intel-data consumption for the current billing period, broken down by chain.\n\nUsage is tracked per seat (the calling user), not account-wide: `totalLimit` is the limit for your seat and `totalCount` is the data points your seat has consumed. The response also includes the start of the current period and the per-chain breakdown of usage.\n\nReturns 503 when usage tracking is unavailable."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"chainUsage\": {\n    \"bitcoin\": {\n      \"count\": 86\n    },\n    \"dogecoin\": {\n      \"count\": 0\n    },\n    \"evm\": {\n      \"count\": 11113\n    },\n    \"solana\": {\n      \"count\": 1020\n    },\n    \"tron\": {\n      \"count\": 154\n    },\n    \"zcash\": {\n      \"count\": 0\n    }\n  },\n  \"periodStart\": \"2026-06-01T00:00:00Z\",\n  \"totalCount\": 12373,\n  \"totalLimit\": 1000000\n}"}],"_postman_id":"6f5dd9be-892b-4b07-8f8b-9819bd020ea8"}],"id":"d661f68a-0f3c-4f86-875b-34b0fb5de395","_postman_id":"d661f68a-0f3c-4f86-875b-34b0fb5de395","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}}},{"name":"swaps","item":[{"name":"Get swaps","id":"bc9f3071-98dd-447e-89a1-1d493e47c727","request":{"method":"GET","header":[],"url":"https://api.arkm.com/swaps?base=0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045&chains=ethereum,bsc,polygon","description":"<p>Retrieves a list of swaps (DEX trades) based on various query filters.</p>\n<p><strong>Rate Limit</strong>: This endpoint has a stricter rate limit of 1 request per second.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["swaps"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Optional. Filter by specific entity or address involved in the swap. Omitting it returns an empty list.</p>\n","type":"text/plain"},"key":"base","value":"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"},{"description":{"content":"<p>Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,solana'). If omitted, returns data across all supported chains.</p>\n","type":"text/plain"},"key":"chains","value":"ethereum,bsc,polygon"},{"disabled":true,"description":{"content":"<p>Optional. Swap direction relative to the base address. Valid values: 'in' (receiving token1), 'out' (sending token0), or 'all'. Defaults to 'all'.</p>\n","type":"text/plain"},"key":"flow","value":"in"},{"disabled":true,"description":{"content":"<p>Optional. List of token addresses or token IDs that appear as either token0 or token1.</p>\n","type":"text/plain"},"key":"tokens","value":"ethereum,0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"},{"disabled":true,"description":{"content":"<p>Optional. Filter to swaps where the base sold one of these tokens (token addresses or token IDs). Combine with 'to' for a specific sold/bought trade. To match a token on either side regardless of direction use 'tokens'; to filter by the transaction parties instead, use senders/receivers.</p>\n","type":"text/plain"},"key":"from","value":"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"},{"disabled":true,"description":{"content":"<p>Optional. Filter to swaps where the base bought one of these tokens (token addresses or token IDs). Combine with 'from' for a specific sold/bought trade.</p>\n","type":"text/plain"},"key":"to","value":"ethereum"},{"disabled":true,"description":{"content":"<p>Optional. Filter swaps at or after this time (unix ms, unix seconds, RFC3339, or YYYY-MM-DD).</p>\n","type":"text/plain"},"key":"timeGte","value":"2024-01-01T00:00:00Z"},{"disabled":true,"description":{"content":"<p>Optional. Filter swaps at or before this time (unix ms, unix seconds, RFC3339, or YYYY-MM-DD).</p>\n","type":"text/plain"},"key":"timeLte","value":"2024-01-01T00:00:00Z"},{"disabled":true,"description":{"content":"<p>Optional. Time range filter using relative durations (e.g. 24h, 7d). Cannot be combined with timeGte/timeLte.</p>\n","type":"text/plain"},"key":"timeLast","value":"24h"},{"disabled":true,"description":{"content":"<p>Optional. Minimum token0 amount (decimal-adjusted; matched on absolute value).</p>\n","type":"text/plain"},"key":"value0Gte","value":"1000"},{"disabled":true,"description":{"content":"<p>Optional. Maximum token0 amount (decimal-adjusted; matched on absolute value).</p>\n","type":"text/plain"},"key":"value0Lte","value":"1000000"},{"disabled":true,"description":{"content":"<p>Optional. Minimum token1 amount (decimal-adjusted; matched on absolute value).</p>\n","type":"text/plain"},"key":"value1Gte","value":"1"},{"disabled":true,"description":{"content":"<p>Optional. Maximum token1 amount (decimal-adjusted; matched on absolute value).</p>\n","type":"text/plain"},"key":"value1Lte","value":"1000"},{"disabled":true,"description":{"content":"<p>Optional. Minimum historical USD value.</p>\n","type":"text/plain"},"key":"usdGte","value":"1000"},{"disabled":true,"description":{"content":"<p>Optional. Maximum historical USD value.</p>\n","type":"text/plain"},"key":"usdLte","value":"100000"},{"disabled":true,"description":{"content":"<p>Optional. Field by which to sort the results. One of: time, usd.</p>\n","type":"text/plain"},"key":"sortKey","value":"time"},{"disabled":true,"description":{"content":"<p>Optional. Sort direction: 'asc' (ascending) or 'desc' (descending). Defaults to 'desc'.</p>\n","type":"text/plain"},"key":"sortDir","value":"asc"},{"disabled":true,"description":{"content":"<p>Optional. Maximum number of results to return. Default: 20. Max: 1649.</p>\n","type":"text/plain"},"key":"limit","value":"20"},{"disabled":true,"description":{"content":"<p>Optional. Pagination offset. offset + limit must not exceed 10000.</p>\n","type":"text/plain"},"key":"offset","value":"0"},{"disabled":true,"description":{"content":"<p>Optional. List of addresses or entities to treat strictly as counterparties.</p>\n","type":"text/plain"},"key":"counterparties","value":"binance"},{"disabled":true,"description":{"content":"<p>Optional. Filter by the transaction parties that initiated the swap (sender addresses or entities). Distinct from 'from', which filters on the sold token.</p>\n","type":"text/plain"},"key":"senders","value":"0x28C6c06298d514Db089934071355E5743bf21d60"},{"disabled":true,"description":{"content":"<p>Optional. Filter by the transaction parties that received the swap output (receiver addresses or entities). Distinct from 'to', which filters on the bought token.</p>\n","type":"text/plain"},"key":"receivers","value":"0x28C6c06298d514Db089934071355E5743bf21d60"},{"disabled":true,"description":{"content":"<p>Optional. Filter by protocol/DEX addresses or entity IDs.</p>\n","type":"text/plain"},"key":"protocols","value":"uniswap"}],"variable":[]}},"response":[{"id":"64d6bca4-a073-4c78-bcb5-c4261afca17c","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/swaps?base=0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045&chains=ethereum,bsc,polygon","host":["https://api.arkm.com"],"path":["swaps"],"query":[{"key":"base","value":"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045","description":"Optional. Filter by specific entity or address involved in the swap. Omitting it returns an empty list."},{"key":"chains","value":"ethereum,bsc,polygon","description":"Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,solana'). If omitted, returns data across all supported chains."},{"key":"flow","value":"in","description":"Optional. Swap direction relative to the base address. Valid values: 'in' (receiving token1), 'out' (sending token0), or 'all'. Defaults to 'all'.","disabled":true},{"key":"tokens","value":"ethereum,0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","description":"Optional. List of token addresses or token IDs that appear as either token0 or token1.","disabled":true},{"key":"from","value":"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","description":"Optional. Filter to swaps where the base sold one of these tokens (token addresses or token IDs). Combine with 'to' for a specific sold/bought trade. To match a token on either side regardless of direction use 'tokens'; to filter by the transaction parties instead, use senders/receivers.","disabled":true},{"key":"to","value":"ethereum","description":"Optional. Filter to swaps where the base bought one of these tokens (token addresses or token IDs). Combine with 'from' for a specific sold/bought trade.","disabled":true},{"key":"timeGte","value":"2024-01-01T00:00:00Z","description":"Optional. Filter swaps at or after this time (unix ms, unix seconds, RFC3339, or YYYY-MM-DD).","disabled":true},{"key":"timeLte","value":"2024-01-01T00:00:00Z","description":"Optional. Filter swaps at or before this time (unix ms, unix seconds, RFC3339, or YYYY-MM-DD).","disabled":true},{"key":"timeLast","value":"24h","description":"Optional. Time range filter using relative durations (e.g. 24h, 7d). Cannot be combined with timeGte/timeLte.","disabled":true},{"key":"value0Gte","value":"1000","description":"Optional. Minimum token0 amount (decimal-adjusted; matched on absolute value).","disabled":true},{"key":"value0Lte","value":"1000000","description":"Optional. Maximum token0 amount (decimal-adjusted; matched on absolute value).","disabled":true},{"key":"value1Gte","value":"1","description":"Optional. Minimum token1 amount (decimal-adjusted; matched on absolute value).","disabled":true},{"key":"value1Lte","value":"1000","description":"Optional. Maximum token1 amount (decimal-adjusted; matched on absolute value).","disabled":true},{"key":"usdGte","value":"1000","description":"Optional. Minimum historical USD value.","disabled":true},{"key":"usdLte","value":"100000","description":"Optional. Maximum historical USD value.","disabled":true},{"key":"sortKey","value":"time","description":"Optional. Field by which to sort the results. One of: time, usd.","disabled":true},{"key":"sortDir","value":"asc","description":"Optional. Sort direction: 'asc' (ascending) or 'desc' (descending). Defaults to 'desc'.","disabled":true},{"key":"limit","value":"20","description":"Optional. Maximum number of results to return. Default: 20. Max: 1649.","disabled":true},{"key":"offset","value":"0","description":"Optional. Pagination offset. offset + limit must not exceed 10000.","disabled":true},{"key":"counterparties","value":"binance","description":"Optional. List of addresses or entities to treat strictly as counterparties.","disabled":true},{"key":"senders","value":"0x28C6c06298d514Db089934071355E5743bf21d60","description":"Optional. Filter by the transaction parties that initiated the swap (sender addresses or entities). Distinct from 'from', which filters on the sold token.","disabled":true},{"key":"receivers","value":"0x28C6c06298d514Db089934071355E5743bf21d60","description":"Optional. Filter by the transaction parties that received the swap output (receiver addresses or entities). Distinct from 'to', which filters on the bought token.","disabled":true},{"key":"protocols","value":"uniswap","description":"Optional. Filter by protocol/DEX addresses or entity IDs.","disabled":true}]},"description":"Retrieves a list of swaps (DEX trades) based on various query filters.\n\n**Rate Limit**: This endpoint has a stricter rate limit of 1 request per second."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"count\": 10000,\n  \"swaps\": [\n    {\n      \"blockHash\": \"0x6e9f88a716532f88ca3e3154a4988dc82405fe7774bb2db1965880c02833a051\",\n      \"blockNumber\": 24643153,\n      \"blockTimestamp\": \"2026-03-12T18:23:47Z\",\n      \"chain\": \"ethereum\",\n      \"contractAddress\": {\n        \"address\": \"0x88e6A0c2dDD26FEEb64F039a2c41296FcB3f5640\",\n        \"arkhamEntity\": {\n          \"crunchbase\": \"https://www.crunchbase.com/organization/uniswap-labs\",\n          \"id\": \"uniswap\",\n          \"linkedin\": \"https://www.linkedin.com/company/uniswaporg\",\n          \"name\": \"Uniswap\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/Uniswap\",\n          \"type\": \"dex\",\n          \"website\": \"https://uniswap.org\"\n        },\n        \"arkhamLabel\": {\n          \"address\": \"0x88e6A0c2dDD26FEEb64F039a2c41296FcB3f5640\",\n          \"chainType\": \"evm\",\n          \"name\": \"USDC 3\"\n        },\n        \"chain\": \"ethereum\",\n        \"contract\": true,\n        \"isUserAddress\": false\n      },\n      \"contractEntityId\": \"uniswap\",\n      \"historicalUSD\": 9128487.881334,\n      \"id\": \"0xb62ab136f09349dd1d2f7c97e830a161c003e60509ff27cdf1f1769d18b963a8_2\",\n      \"receiver\": {\n        \"address\": \"0x51C72848c68a965f66FA7a88855F9f7784502a7F\",\n        \"arkhamEntity\": {\n          \"crunchbase\": \"https://www.crunchbase.com/organization/wintermute-trading\",\n          \"id\": \"wintermute\",\n          \"linkedin\": \"https://www.linkedin.com/company/wintermute-trading\",\n          \"name\": \"Wintermute\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/wintermute_t\",\n          \"type\": \"fund\",\n          \"website\": \"https://www.wintermute.com/\"\n        },\n        \"arkhamLabel\": {\n          \"address\": \"0x51C72848c68a965f66FA7a88855F9f7784502a7F\",\n          \"chainType\": \"evm\",\n          \"name\": \"Market Maker\"\n        },\n        \"chain\": \"ethereum\",\n        \"contract\": true,\n        \"isUserAddress\": false\n      },\n      \"sender\": {\n        \"address\": \"0x51C72848c68a965f66FA7a88855F9f7784502a7F\",\n        \"arkhamEntity\": {\n          \"crunchbase\": \"https://www.crunchbase.com/organization/wintermute-trading\",\n          \"id\": \"wintermute\",\n          \"linkedin\": \"https://www.linkedin.com/company/wintermute-trading\",\n          \"name\": \"Wintermute\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/wintermute_t\",\n          \"type\": \"fund\",\n          \"website\": \"https://www.wintermute.com/\"\n        },\n        \"arkhamLabel\": {\n          \"address\": \"0x51C72848c68a965f66FA7a88855F9f7784502a7F\",\n          \"chainType\": \"evm\",\n          \"name\": \"Market Maker\"\n        },\n        \"chain\": \"ethereum\",\n        \"contract\": true,\n        \"isUserAddress\": false\n      },\n      \"token0\": \"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48\",\n      \"token0Decimals\": 6,\n      \"token0Id\": \"usd-coin\",\n      \"token0Name\": \"USD Coin\",\n      \"token0Symbol\": \"USDC\",\n      \"token1\": \"0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2\",\n      \"token1Decimals\": 18,\n      \"token1Id\": \"weth\",\n      \"token1Name\": \"Wrapped Ether\",\n      \"token1Symbol\": \"WETH\",\n      \"unitValue0\": -9128487.881334,\n      \"unitValue1\": 4263.136684788042,\n      \"valid\": true\n    },\n    {\n      \"blockHash\": \"0x8b77776a7b9ed15a50afbda87fab1479a7d369962330d8e162d9c1012da1faa7\",\n      \"blockNumber\": 65642004,\n      \"blockTimestamp\": \"2025-10-23T15:11:49Z\",\n      \"chain\": \"bsc\",\n      \"contractAddress\": {\n        \"address\": \"0x47a90A2d92A8367A91EfA1906bFc8c1E05bf10c4\",\n        \"arkhamEntity\": {\n          \"crunchbase\": \"https://www.crunchbase.com/organization/uniswap-labs\",\n          \"id\": \"uniswap\",\n          \"linkedin\": \"https://www.linkedin.com/company/uniswaporg\",\n          \"name\": \"Uniswap\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/Uniswap\",\n          \"type\": \"dex\",\n          \"website\": \"https://uniswap.org\"\n        },\n        \"arkhamLabel\": {\n          \"address\": \"0x47a90A2d92A8367A91EfA1906bFc8c1E05bf10c4\",\n          \"chainType\": \"evm\",\n          \"name\": \"V3 Pool\"\n        },\n        \"chain\": \"bsc\",\n        \"contract\": true,\n        \"isUserAddress\": false\n      },\n      \"contractEntityId\": null,\n      \"historicalUSD\": 256048.41755623545,\n      \"id\": \"0x1bf3a69b623e444dae87be15f51e9fd2a7a9cd03484c07aac838d77ac6ec8619_3\",\n      \"receiver\": {\n        \"address\": \"0x76801132a22801640284Cd67F7DD41fED2926B6a\",\n        \"arkhamEntity\": {\n          \"crunchbase\": \"https://www.crunchbase.com/organization/wintermute-trading\",\n          \"id\": \"wintermute\",\n          \"linkedin\": \"https://www.linkedin.com/company/wintermute-trading\",\n          \"name\": \"Wintermute\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/wintermute_t\",\n          \"type\": \"fund\",\n          \"website\": \"https://www.wintermute.com/\"\n        },\n        \"chain\": \"bsc\",\n        \"contract\": true,\n        \"isUserAddress\": false\n      },\n      \"sender\": {\n        \"address\": \"0x32564234dF8961ae1d640bE2CBA4aEab54151551\",\n        \"chain\": \"bsc\",\n        \"contract\": true,\n        \"isUserAddress\": false\n      },\n      \"token0\": \"0x55d398326f99059fF775485246999027B3197955\",\n      \"token0Decimals\": 18,\n      \"token0Id\": \"binance-bridged-usdt-bnb-smart-chain\",\n      \"token0Name\": \"Tether USD\",\n      \"token0Symbol\": \"USDT\",\n      \"token1\": \"0xbb4CdB9CBd36B01bD1cBaEBF2De08d9173bc095c\",\n      \"token1Decimals\": 18,\n      \"token1Id\": \"wbnb\",\n      \"token1Name\": \"Wrapped BNB\",\n      \"token1Symbol\": \"WBNB\",\n      \"unitValue0\": 256048.41755623545,\n      \"unitValue1\": -228.12506498806798,\n      \"valid\": true\n    }\n  ]\n}"}],"_postman_id":"bc9f3071-98dd-447e-89a1-1d493e47c727"}],"id":"0ce1dba1-65d2-457f-9a4f-4e0b81471be3","_postman_id":"0ce1dba1-65d2-457f-9a4f-4e0b81471be3","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}}},{"name":"tag","item":[{"name":"Get tag parameters","id":"cc536e02-5192-44ed-a764-e8553909aa8a","request":{"method":"GET","header":[],"url":"https://api.arkm.com/tag/:id/params","description":"<p>Returns a list of all unique tag parameter combinations for the specified tag.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["tag",":id","params"],"host":["https://api.arkm.com"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Number of items to return per page (1-1000, default 100).</p>\n","type":"text/plain"},"key":"limit","value":"100"},{"disabled":true,"description":{"content":"<p>Optional. Number of items to skip from the beginning (must be &gt;= 0, default 0).</p>\n","type":"text/plain"},"key":"offset","value":"0"}],"variable":[{"id":"85a4af4e-7e69-42f8-9290-42716eefb4b3","description":{"content":"<p>Required. The tag identifier to retrieve parameters for.</p>\n","type":"text/plain"},"type":"any","value":"proof-of-reserves","key":"id"}]}},"response":[{"id":"eb21bae6-df2b-4ff0-a420-09258905557b","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/tag/:id/params","host":["https://api.arkm.com"],"path":["tag",":id","params"],"query":[{"key":"limit","value":"100","description":"Optional. Number of items to return per page (1-1000, default 100).","disabled":true},{"key":"offset","value":"0","description":"Optional. Number of items to skip from the beginning (must be >= 0, default 0).","disabled":true}],"variable":[{"key":"id","value":"proof-of-reserves","description":"Required. The tag identifier to retrieve parameters for."}]},"description":"Returns a list of all unique tag parameter combinations for the specified tag."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"disablePage\": false,\n    \"excludeEntities\": false,\n    \"id\": \"proof-of-reserves\",\n    \"label\": \"Binance Proof of Reserves\",\n    \"rank\": 20,\n    \"tagParams\": \"Binance\"\n  }\n]"}],"_postman_id":"cc536e02-5192-44ed-a764-e8553909aa8a"},{"name":"Get tag summary statistics","id":"27eb19db-292d-4aa6-9710-282d0c6d3ec6","request":{"method":"GET","header":[],"url":"https://api.arkm.com/tag/:id/summary","description":"<p>Returns summary statistics for the specified tag, including total counts of addresses, entities, and unique tag parameters.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["tag",":id","summary"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"df2378d6-dc72-4a1f-94ca-5a1396ffa4a5","description":{"content":"<p>Required. The tag identifier to retrieve summary statistics for.</p>\n","type":"text/plain"},"type":"any","value":"proof-of-reserves","key":"id"}]}},"response":[{"id":"81e05892-423e-4422-8e2a-59b6634e1289","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/tag/:id/summary","host":["https://api.arkm.com"],"path":["tag",":id","summary"],"variable":[{"key":"id","value":"proof-of-reserves","description":"Required. The tag identifier to retrieve summary statistics for."}]},"description":"Returns summary statistics for the specified tag, including total counts of addresses, entities, and unique tag parameters."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"numAddresses\": 1436136,\n  \"numEntities\": 41,\n  \"numUniqueTagParams\": 38,\n  \"tagId\": \"proof-of-reserves\"\n}"}],"_postman_id":"27eb19db-292d-4aa6-9710-282d0c6d3ec6"}],"id":"a5ae7215-7a4f-476e-9f47-392d017c19e9","_postman_id":"a5ae7215-7a4f-476e-9f47-392d017c19e9","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}}},{"name":"token","item":[{"name":"Get chain addresses for a token","id":"1893d0e3-30ee-4834-a858-7c4f9c5eb43c","request":{"method":"GET","header":[],"url":"https://api.arkm.com/token/addresses/:id","description":"<p>Returns all known chain/address pairs for a token identified by its pricing ID.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["token","addresses",":id"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"64ee40ef-59d9-41b4-b998-529a88c591f0","description":{"content":"<p>Required. The CoinGecko pricing ID of the token.</p>\n","type":"text/plain"},"type":"any","value":"usd-coin","key":"id"}]}},"response":[{"id":"c635a5f1-18bb-4bb4-af46-d3f3c4cb130c","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/token/addresses/:id","host":["https://api.arkm.com"],"path":["token","addresses",":id"],"variable":[{"key":"id","value":"usd-coin","description":"Required. The CoinGecko pricing ID of the token."}]},"description":"Returns all known chain/address pairs for a token identified by its pricing ID."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"base\": \"0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913\",\n  \"ethereum\": \"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48\",\n  \"solana\": \"EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v\"\n}"}],"_postman_id":"1893d0e3-30ee-4834-a858-7c4f9c5eb43c"},{"name":"Get Arkham Exchange tokens","id":"59c75da2-d9b6-4806-b343-a9e3b93b3e78","request":{"method":"GET","header":[],"url":"https://api.arkm.com/token/arkham_exchange_tokens","description":"<p>Returns the tokens listed on Arkham Exchange, split into <code>spotTokens</code> and <code>perpTokens</code> arrays. Each entry identifies a token by its CoinGecko pricing ID.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["token","arkham_exchange_tokens"],"host":["https://api.arkm.com"],"query":[],"variable":[]}},"response":[{"id":"4ff1a251-e3de-4415-b2bf-25ca59bb8134","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.arkm.com/token/arkham_exchange_tokens","description":"Returns the tokens listed on Arkham Exchange, split into `spotTokens` and `perpTokens` arrays. Each entry identifies a token by its CoinGecko pricing ID."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"perpTokens\": [\n    {\n      \"identifier\": {\n        \"pricingID\": \"ethereum\"\n      }\n    },\n    {\n      \"identifier\": {\n        \"pricingID\": \"solana\"\n      }\n    }\n  ],\n  \"spotTokens\": [\n    {\n      \"identifier\": {\n        \"pricingID\": \"bitcoin\"\n      }\n    },\n    {\n      \"identifier\": {\n        \"pricingID\": \"ethereum\"\n      }\n    }\n  ]\n}"}],"_postman_id":"59c75da2-d9b6-4806-b343-a9e3b93b3e78"},{"name":"Get token balance for an entity or address, for a specific chain/address","id":"0176e2a0-e91c-4622-b6c5-3f98a76d8ba7","request":{"method":"GET","header":[],"url":"https://api.arkm.com/token/balance/:chain/:address?entityID=binance","description":"<p>Returns the balance of a specific token contract (identified by the <code>chain</code> and <code>address</code> path params) held by an entity or address. The <code>address</code> query param is the holder wallet(s); the path <code>address</code> is the token contract.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["token","balance",":chain",":address"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Optional. Entity ID to query the balance for. Provide either entityID or address; if both are given, address takes precedence and entityID is ignored. If neither is given, the balance is 0.</p>\n","type":"text/plain"},"key":"entityID","value":"binance"},{"disabled":true,"description":{"content":"<p>Optional. Addresses to query the balance for, passed as a single comma-separated string, e.g. '0x28C6…,0x21a3…' (not a JSON array). Takes precedence over entityID when both are provided; if neither is given, the balance is 0.</p>\n","type":"text/plain"},"key":"address","value":"0x28C6c06298d514Db089934071355E5743bf21d60"}],"variable":[{"id":"c28a74be-3874-4fe0-bccb-62a4e80e3381","description":{"content":"<p>Required. Blockchain network where the token is deployed.</p>\n","type":"text/plain"},"type":"any","value":"ethereum","key":"chain"},{"id":"21cd758c-4d91-4822-a769-279e282633c8","description":{"content":"<p>Required. The token contract address.</p>\n","type":"text/plain"},"type":"any","value":"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","key":"address"}]}},"response":[{"id":"c5ac4887-27de-46ef-a972-4c7a98081c7c","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/token/balance/:chain/:address?entityID=binance","host":["https://api.arkm.com"],"path":["token","balance",":chain",":address"],"query":[{"key":"entityID","value":"binance","description":"Optional. Entity ID to query the balance for. Provide either entityID or address; if both are given, address takes precedence and entityID is ignored. If neither is given, the balance is 0."},{"key":"address","value":"0x28C6c06298d514Db089934071355E5743bf21d60","description":"Optional. Addresses to query the balance for, passed as a single comma-separated string, e.g. '0x28C6…,0x21a3…' (not a JSON array). Takes precedence over entityID when both are provided; if neither is given, the balance is 0.","disabled":true}],"variable":[{"key":"chain","value":"ethereum","description":"Required. Blockchain network where the token is deployed."},{"key":"address","value":"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","description":"Required. The token contract address."}]},"description":"Returns the balance of a specific token contract (identified by the `chain` and `address` path params) held by an entity or address. The `address` query param is the holder wallet(s); the path `address` is the token contract."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"balance\": 2128574.671908,\n  \"name\": \"USD Coin\",\n  \"price\": 0.99985,\n  \"pricingID\": \"usd-coin\",\n  \"symbol\": \"USDC\",\n  \"usd\": 2128254.36\n}"}],"_postman_id":"0176e2a0-e91c-4622-b6c5-3f98a76d8ba7"},{"name":"Get token balance (all chains) for an entity or address","id":"724e641d-e9fb-4ad6-923a-c7fd12ec5e0d","request":{"method":"GET","header":[],"url":"https://api.arkm.com/token/balance/:id?entityID=binance","description":"<p>Returns the aggregated token balance for either an entity or address, across all chains.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["token","balance",":id"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Optional. Entity ID to query the balance for. Provide either entityID or address; if both are given, address takes precedence and entityID is ignored. If neither is given, the balance is 0.</p>\n","type":"text/plain"},"key":"entityID","value":"binance"},{"disabled":true,"description":{"content":"<p>Optional. Addresses to query the balance for, passed as a single comma-separated string, e.g. '0x28C6…,0x21a3…' (not a JSON array). Takes precedence over entityID when both are provided; if neither is given, the balance is 0.</p>\n","type":"text/plain"},"key":"address","value":"0x28C6c06298d514Db089934071355E5743bf21d60"}],"variable":[{"id":"0bf8c309-4838-4012-87bf-f9f9c558787e","description":{"content":"<p>Required. The CoinGecko pricing ID of the token.</p>\n","type":"text/plain"},"type":"any","value":"usd-coin","key":"id"}]}},"response":[{"id":"17de9e6d-496e-46f5-bed0-00786696469d","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/token/balance/:id?entityID=binance","host":["https://api.arkm.com"],"path":["token","balance",":id"],"query":[{"key":"entityID","value":"binance","description":"Optional. Entity ID to query the balance for. Provide either entityID or address; if both are given, address takes precedence and entityID is ignored. If neither is given, the balance is 0."},{"key":"address","value":"0x28C6c06298d514Db089934071355E5743bf21d60","description":"Optional. Addresses to query the balance for, passed as a single comma-separated string, e.g. '0x28C6…,0x21a3…' (not a JSON array). Takes precedence over entityID when both are provided; if neither is given, the balance is 0.","disabled":true}],"variable":[{"key":"id","value":"usd-coin","description":"Required. The CoinGecko pricing ID of the token."}]},"description":"Returns the aggregated token balance for either an entity or address, across all chains."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"balance\": 2128574.671908,\n  \"name\": \"USD Coin\",\n  \"price\": 0.99985,\n  \"pricingID\": \"usd-coin\",\n  \"symbol\": \"USDC\",\n  \"usd\": 2128254.36\n}"}],"_postman_id":"724e641d-e9fb-4ad6-923a-c7fd12ec5e0d"},{"name":"Get top token holders by chain and address","id":"41d2aebd-05e5-4bea-87cf-76e81ba697b7","request":{"method":"GET","header":[],"url":"https://api.arkm.com/token/holders/:chain/:address","description":"<p>Returns the top token holders for a specific token contract on a given chain. Results are sorted by balance in descending order.</p>\n<p>Only chains with token contracts (EVM chains, Solana, Tron) are supported here. For UTXO assets like Bitcoin, use the pricing-ID form (/token/holders/{id}).</p>\n<p><strong>Response fields:</strong></p>\n<ul>\n<li><strong>token</strong>: Token metadata (name, symbol, pricing info).</li>\n<li><strong>totalSupply</strong>: Total supply for the chain.</li>\n<li><strong>addressTopHolders</strong>: Top holders by individual address.</li>\n<li><strong>entityTopHolders</strong>: Top holders grouped by entity (only present when groupByEntity=true).</li>\n</ul>\n<p><strong>Note:</strong> Entity objects in the response do not include <code>populatedTags</code>. Use <code>GET /intelligence/entity/{id}</code> to retrieve tags for individual entities.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["token","holders",":chain",":address"],"host":["https://api.arkm.com"],"query":[{"disabled":true,"description":{"content":"<p>Optional. If 'true', groups holdings by entity rather than individual addresses.</p>\n","type":"text/plain"},"key":"groupByEntity","value":"true"},{"disabled":true,"description":{"content":"<p>Optional. Maximum number of holders to return per page (default 100, max 100). offset + limit must not exceed 1000.</p>\n","type":"text/plain"},"key":"limit","value":"100"},{"disabled":true,"description":{"content":"<p>Optional. Number of holders to skip for pagination (default 0).</p>\n","type":"text/plain"},"key":"offset","value":"0"},{"disabled":true,"description":{"content":"<p>Optional. Optional Solana pool address. When provided, address holder unrealized PnL is calculated from this pool only.</p>\n","type":"text/plain"},"key":"poolAddress","value":"CiLg83sX8nJQMPkRwGMZYcjbgcHxaXsL6XjZre5nmeKn"}],"variable":[{"id":"39eaf6ca-1f47-488a-a590-638e870d1224","description":{"content":"<p>Required. Blockchain network where the token is deployed.</p>\n","type":"text/plain"},"type":"any","value":"ethereum","key":"chain"},{"id":"b4e5cba1-9694-436f-be66-0833ccaff04f","description":{"content":"<p>Required. The token contract address to query.</p>\n","type":"text/plain"},"type":"any","value":"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","key":"address"}]}},"response":[{"id":"dc06de8b-0394-484f-94b4-0219f2cc1a9a","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/token/holders/:chain/:address","host":["https://api.arkm.com"],"path":["token","holders",":chain",":address"],"query":[{"key":"groupByEntity","value":"true","description":"Optional. If 'true', groups holdings by entity rather than individual addresses.","disabled":true},{"key":"limit","value":"100","description":"Optional. Maximum number of holders to return per page (default 100, max 100). offset + limit must not exceed 1000.","disabled":true},{"key":"offset","value":"0","description":"Optional. Number of holders to skip for pagination (default 0).","disabled":true},{"key":"poolAddress","value":"CiLg83sX8nJQMPkRwGMZYcjbgcHxaXsL6XjZre5nmeKn","description":"Optional. Optional Solana pool address. When provided, address holder unrealized PnL is calculated from this pool only.","disabled":true}],"variable":[{"key":"chain","value":"ethereum","description":"Required. Blockchain network where the token is deployed."},{"key":"address","value":"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","description":"Required. The token contract address to query."}]},"description":"Returns the top token holders for a specific token contract on a given chain. Results are sorted by balance in descending order.\n\nOnly chains with token contracts (EVM chains, Solana, Tron) are supported here. For UTXO assets like Bitcoin, use the pricing-ID form (/token/holders/{id}).\n\n**Response fields:**\n- **token**: Token metadata (name, symbol, pricing info).\n- **totalSupply**: Total supply for the chain.\n- **addressTopHolders**: Top holders by individual address.\n- **entityTopHolders**: Top holders grouped by entity (only present when groupByEntity=true).\n\n**Note:** Entity objects in the response do not include `populatedTags`. Use `GET /intelligence/entity/{id}` to retrieve tags for individual entities."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"addressTopHolders\": {\n    \"ethereum\": [\n      {\n        \"address\": {\n          \"address\": \"0x37305B1cD40574E4C5Ce33f8e8306Be057fD7341\",\n          \"arkhamEntity\": {\n            \"crunchbase\": \"https://www.crunchbase.com/organization/makerdao\",\n            \"id\": \"makerdao\",\n            \"linkedin\": \"https://www.linkedin.com/company/makerdao/\",\n            \"name\": \"Sky (MakerDAO)\",\n            \"note\": \"\",\n            \"service\": null,\n            \"twitter\": \"https://twitter.com/MakerDAO\",\n            \"type\": \"cdp\",\n            \"website\": \"https://makerdao.com\"\n          },\n          \"arkhamLabel\": {\n            \"address\": \"0x37305B1cD40574E4C5Ce33f8e8306Be057fD7341\",\n            \"chainType\": \"evm\",\n            \"name\": \"LITE PSM USDC A POCKET\"\n          },\n          \"chain\": \"ethereum\",\n          \"contract\": false,\n          \"isUserAddress\": false\n        },\n        \"balance\": 4453872464.461215,\n        \"pctOfCap\": 0.06071662849686393,\n        \"usd\": 4453872464.461215\n      },\n      {\n        \"address\": {\n          \"address\": \"0xe1940f578743367F38D3f25c2D2d32D6636929B6\",\n          \"arkhamEntity\": {\n            \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n            \"id\": \"binance\",\n            \"linkedin\": \"https://www.linkedin.com/company/binance\",\n            \"name\": \"Binance\",\n            \"note\": \"\",\n            \"service\": null,\n            \"twitter\": \"https://twitter.com/binance\",\n            \"type\": \"cex\",\n            \"website\": \"https://binance.com\"\n          },\n          \"arkhamLabel\": {\n            \"address\": \"0xe1940f578743367F38D3f25c2D2d32D6636929B6\",\n            \"chainType\": \"evm\",\n            \"name\": \"SingleOwnerMSCA (Proxy)\"\n          },\n          \"chain\": \"ethereum\",\n          \"contract\": true,\n          \"isUserAddress\": false\n        },\n        \"balance\": 1699999999.039577,\n        \"pctOfCap\": 0.02317494926268423,\n        \"usd\": 1699999999.039577\n      }\n    ]\n  },\n  \"entityTopHolders\": {},\n  \"token\": {\n    \"identifier\": {\n      \"address\": \"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48\",\n      \"chain\": \"ethereum\",\n      \"pricingID\": \"usd-coin\"\n    },\n    \"name\": \"USD Coin\",\n    \"symbol\": \"USDC\"\n  },\n  \"totalSupply\": {\n    \"ethereum\": 50539998661.70982\n  }\n}"}],"_postman_id":"41d2aebd-05e5-4bea-87cf-76e81ba697b7"},{"name":"Get top token holders by pricing ID","id":"e204dc28-02d6-404b-96d3-98a17603841d","request":{"method":"GET","header":[],"url":"https://api.arkm.com/token/holders/:id","description":"<p>Returns the top token holders for a token identified by its CoinGecko pricing ID (e.g. \"bitcoin\", \"ethereum\", \"usd-coin\"). Results are sorted by balance in descending order.</p>\n<p><strong>Response fields:</strong></p>\n<ul>\n<li><strong>token</strong>: Token metadata (name, symbol, pricing info).</li>\n<li><strong>totalSupply</strong>: Total supply per chain.</li>\n<li><strong>addressTopHolders</strong>: Top holders by individual address, keyed by chain.</li>\n<li><strong>entityTopHolders</strong>: Top holders grouped by entity (only present when groupByEntity=true), keyed by chain.</li>\n</ul>\n<p><strong>Note:</strong> Entity objects in the response do not include <code>populatedTags</code>. Use <code>GET /intelligence/entity/{id}</code> to retrieve tags for individual entities.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["token","holders",":id"],"host":["https://api.arkm.com"],"query":[{"disabled":true,"description":{"content":"<p>Optional. If 'true', groups holdings by entity rather than individual addresses.</p>\n","type":"text/plain"},"key":"groupByEntity","value":"true"},{"disabled":true,"description":{"content":"<p>Optional. Maximum number of holders to return per page (default 100, max 100). offset + limit must not exceed 1000.</p>\n","type":"text/plain"},"key":"limit","value":"100"},{"disabled":true,"description":{"content":"<p>Optional. Number of holders to skip for pagination (default 0).</p>\n","type":"text/plain"},"key":"offset","value":"0"},{"disabled":true,"description":{"content":"<p>Optional. Optional Solana pool address. When provided, address holder unrealized PnL is calculated from this pool only.</p>\n","type":"text/plain"},"key":"poolAddress","value":"CiLg83sX8nJQMPkRwGMZYcjbgcHxaXsL6XjZre5nmeKn"}],"variable":[{"id":"88a7316b-3480-4a0c-99d6-eef19e6778fc","description":{"content":"<p>Required. The CoinGecko pricing ID of the token.</p>\n","type":"text/plain"},"type":"any","value":"usd-coin","key":"id"}]}},"response":[{"id":"74abec8a-633a-4773-a71b-ea159224f052","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/token/holders/:id","host":["https://api.arkm.com"],"path":["token","holders",":id"],"query":[{"key":"groupByEntity","value":"true","description":"Optional. If 'true', groups holdings by entity rather than individual addresses.","disabled":true},{"key":"limit","value":"100","description":"Optional. Maximum number of holders to return per page (default 100, max 100). offset + limit must not exceed 1000.","disabled":true},{"key":"offset","value":"0","description":"Optional. Number of holders to skip for pagination (default 0).","disabled":true},{"key":"poolAddress","value":"CiLg83sX8nJQMPkRwGMZYcjbgcHxaXsL6XjZre5nmeKn","description":"Optional. Optional Solana pool address. When provided, address holder unrealized PnL is calculated from this pool only.","disabled":true}],"variable":[{"key":"id","value":"usd-coin","description":"Required. The CoinGecko pricing ID of the token."}]},"description":"Returns the top token holders for a token identified by its CoinGecko pricing ID (e.g. \"bitcoin\", \"ethereum\", \"usd-coin\"). Results are sorted by balance in descending order.\n\n**Response fields:**\n- **token**: Token metadata (name, symbol, pricing info).\n- **totalSupply**: Total supply per chain.\n- **addressTopHolders**: Top holders by individual address, keyed by chain.\n- **entityTopHolders**: Top holders grouped by entity (only present when groupByEntity=true), keyed by chain.\n\n**Note:** Entity objects in the response do not include `populatedTags`. Use `GET /intelligence/entity/{id}` to retrieve tags for individual entities."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"addressTopHolders\": {\n    \"ethereum\": [\n      {\n        \"address\": {\n          \"address\": \"0x37305B1cD40574E4C5Ce33f8e8306Be057fD7341\",\n          \"arkhamEntity\": {\n            \"crunchbase\": \"https://www.crunchbase.com/organization/makerdao\",\n            \"id\": \"makerdao\",\n            \"linkedin\": \"https://www.linkedin.com/company/makerdao/\",\n            \"name\": \"Sky (MakerDAO)\",\n            \"note\": \"\",\n            \"service\": null,\n            \"twitter\": \"https://twitter.com/MakerDAO\",\n            \"type\": \"cdp\",\n            \"website\": \"https://makerdao.com\"\n          },\n          \"arkhamLabel\": {\n            \"address\": \"0x37305B1cD40574E4C5Ce33f8e8306Be057fD7341\",\n            \"chainType\": \"evm\",\n            \"name\": \"LITE PSM USDC A POCKET\"\n          },\n          \"chain\": \"ethereum\",\n          \"contract\": false,\n          \"isUserAddress\": false\n        },\n        \"balance\": 4453872464.461215,\n        \"pctOfCap\": 0.06071662849686393,\n        \"usd\": 4453872464.461215\n      },\n      {\n        \"address\": {\n          \"address\": \"0xe1940f578743367F38D3f25c2D2d32D6636929B6\",\n          \"arkhamEntity\": {\n            \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n            \"id\": \"binance\",\n            \"linkedin\": \"https://www.linkedin.com/company/binance\",\n            \"name\": \"Binance\",\n            \"note\": \"\",\n            \"service\": null,\n            \"twitter\": \"https://twitter.com/binance\",\n            \"type\": \"cex\",\n            \"website\": \"https://binance.com\"\n          },\n          \"arkhamLabel\": {\n            \"address\": \"0xe1940f578743367F38D3f25c2D2d32D6636929B6\",\n            \"chainType\": \"evm\",\n            \"name\": \"SingleOwnerMSCA (Proxy)\"\n          },\n          \"chain\": \"ethereum\",\n          \"contract\": true,\n          \"isUserAddress\": false\n        },\n        \"balance\": 1699999999.039577,\n        \"pctOfCap\": 0.02317494926268423,\n        \"usd\": 1699999999.039577\n      }\n    ]\n  },\n  \"entityTopHolders\": {},\n  \"token\": {\n    \"identifier\": {\n      \"pricingID\": \"usd-coin\"\n    },\n    \"name\": \"USDC\",\n    \"price\": 0.999831,\n    \"price24hAgo\": 0.999825,\n    \"symbol\": \"usdc\"\n  },\n  \"totalSupply\": {\n    \"ethereum\": 50539998661.70982\n  }\n}"}],"_postman_id":"e204dc28-02d6-404b-96d3-98a17603841d"},{"name":"Get current market data for a token","id":"963ed9af-5e65-4a5a-8232-9fccd2cc0f23","request":{"method":"GET","header":[],"url":"https://api.arkm.com/token/market/:id","description":"<p>Returns current market data for a token including price, market cap, volume, and supply information.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["token","market",":id"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"cc1922b3-d1c5-4059-80bb-8cbd07f08268","description":{"content":"<p>Required. The CoinGecko pricing ID of the token.</p>\n","type":"text/plain"},"type":"any","value":"usd-coin","key":"id"}]}},"response":[{"id":"a0b40c46-f919-4f8d-b70e-da8b31163be9","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/token/market/:id","host":["https://api.arkm.com"],"path":["token","market",":id"],"variable":[{"key":"id","value":"usd-coin","description":"Required. The CoinGecko pricing ID of the token."}]},"description":"Returns current market data for a token including price, market cap, volume, and supply information."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"allTimeHigh\": 1.043,\n  \"allTimeLow\": 0.877647,\n  \"circulatingSupply\": 73354602419.50252,\n  \"fullyDilutedValue\": 73342671855.44943,\n  \"marketCap\": 73340976893,\n  \"maxPrice24h\": 0.999979,\n  \"minPrice24h\": 0.999745,\n  \"price\": 0.999831,\n  \"price180dAgo\": 0.999812,\n  \"price24hAgo\": 0.999797,\n  \"price30dAgo\": 0.999724,\n  \"price7dAgo\": 0.999852,\n  \"totalSupply\": 73355068862.08713,\n  \"totalVolume\": 7539296441\n}"}],"_postman_id":"963ed9af-5e65-4a5a-8232-9fccd2cc0f23"},{"name":"Get token price history by chain and address","id":"f99c5470-0de2-4592-b55f-38389a964c1b","request":{"method":"GET","header":[],"url":"https://api.arkm.com/token/price/history/:chain/:address","description":"<p>Returns historical price data for a token identified by its chain and contract address.</p>\n<p>Only chains that have token contracts (EVM chains, Solana, Tron) are supported here. For UTXO assets like Bitcoin, use <code>/token/price/history/{id}</code> with the token's pricing ID (e.g. <code>bitcoin</code>).</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["token","price","history",":chain",":address"],"host":["https://api.arkm.com"],"query":[{"disabled":true,"description":{"content":"<p>Optional. If 'true', returns the full daily price history for the token. Otherwise returns every quote recorded in the last 24 hours.</p>\n","type":"text/plain"},"key":"daily","value":"true"}],"variable":[{"id":"3258163b-90df-4949-bade-7696dfe25785","description":{"content":"<p>Required. Blockchain network where the token is deployed.</p>\n","type":"text/plain"},"type":"any","value":"ethereum","key":"chain"},{"id":"8d669f5c-3f1d-4cb0-8bb8-94566a5fd0a6","description":{"content":"<p>Required. The token contract address.</p>\n","type":"text/plain"},"type":"any","value":"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","key":"address"}]}},"response":[{"id":"38b71813-cfb4-46a6-9889-5468c9d58bff","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/token/price/history/:chain/:address","host":["https://api.arkm.com"],"path":["token","price","history",":chain",":address"],"query":[{"key":"daily","value":"true","description":"Optional. If 'true', returns the full daily price history for the token. Otherwise returns every quote recorded in the last 24 hours.","disabled":true}],"variable":[{"key":"chain","value":"ethereum","description":"Required. Blockchain network where the token is deployed."},{"key":"address","value":"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","description":"Required. The token contract address."}]},"description":"Returns historical price data for a token identified by its chain and contract address.\n\nOnly chains that have token contracts (EVM chains, Solana, Tron) are supported here. For UTXO assets like Bitcoin, use `/token/price/history/{id}` with the token's pricing ID (e.g. `bitcoin`)."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"marketCap\": 73287761995,\n    \"time\": \"2026-07-13T10:26:27.747Z\",\n    \"usd\": 0.999798,\n    \"volume24h\": 8228653724\n  },\n  {\n    \"marketCap\": 73290240682,\n    \"time\": \"2026-07-13T10:27:12.877Z\",\n    \"usd\": 0.9998,\n    \"volume24h\": 8232347779\n  },\n  {\n    \"marketCap\": 73286652112,\n    \"time\": \"2026-07-13T10:29:22.977Z\",\n    \"usd\": 0.999766,\n    \"volume24h\": 8252952310\n  }\n]"}],"_postman_id":"f99c5470-0de2-4592-b55f-38389a964c1b"},{"name":"Get token price history by pricing ID","id":"603b39d2-7aec-4c1d-bc17-a129147c4a4e","request":{"method":"GET","header":[],"url":"https://api.arkm.com/token/price/history/:id","description":"<p>Returns historical price data for a token identified by its pricing ID (e.g., 'bitcoin', 'ethereum'). Returns an array of timestamped price quotes.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["token","price","history",":id"],"host":["https://api.arkm.com"],"query":[{"disabled":true,"description":{"content":"<p>Optional. If 'true', returns the full daily price history for the token. Otherwise returns every quote recorded in the last 24 hours.</p>\n","type":"text/plain"},"key":"daily","value":"true"}],"variable":[{"id":"e55c23d9-5cec-4fce-adb0-e311aa6648bb","description":{"content":"<p>Required. The CoinGecko pricing ID of the token.</p>\n","type":"text/plain"},"type":"any","value":"usd-coin","key":"id"}]}},"response":[{"id":"1244cc17-6535-4aef-a584-b8b63edc4da8","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/token/price/history/:id","host":["https://api.arkm.com"],"path":["token","price","history",":id"],"query":[{"key":"daily","value":"true","description":"Optional. If 'true', returns the full daily price history for the token. Otherwise returns every quote recorded in the last 24 hours.","disabled":true}],"variable":[{"key":"id","value":"usd-coin","description":"Required. The CoinGecko pricing ID of the token."}]},"description":"Returns historical price data for a token identified by its pricing ID (e.g., 'bitcoin', 'ethereum'). Returns an array of timestamped price quotes."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"marketCap\": 73287761995,\n    \"time\": \"2026-07-13T10:26:27.747Z\",\n    \"usd\": 0.999798,\n    \"volume24h\": 8228653724\n  },\n  {\n    \"marketCap\": 73290240682,\n    \"time\": \"2026-07-13T10:27:12.877Z\",\n    \"usd\": 0.9998,\n    \"volume24h\": 8232347779\n  },\n  {\n    \"marketCap\": 73286652112,\n    \"time\": \"2026-07-13T10:29:22.977Z\",\n    \"usd\": 0.999766,\n    \"volume24h\": 8252952310\n  }\n]"}],"_postman_id":"603b39d2-7aec-4c1d-bc17-a129147c4a4e"},{"name":"Get token price change since a timestamp","id":"e3f14ceb-bad3-4042-972b-5464232c1fbe","request":{"method":"GET","header":[],"url":"https://api.arkm.com/token/price_change/:id?pastTime=2024-01-01T00:00:00Z","description":"<p>Returns the token's current price and its historical price at the requested past timestamp. The absolute or percentage change can be computed from the two values.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["token","price_change",":id"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Required. Past timestamp in RFC3339 format to calculate price change from.</p>\n","type":"text/plain"},"key":"pastTime","value":"2024-01-01T00:00:00Z"}],"variable":[{"id":"f1054fdf-5ff0-4b98-91d5-d61949a3a1d1","description":{"content":"<p>Required. The CoinGecko pricing ID of the token.</p>\n","type":"text/plain"},"type":"any","value":"usd-coin","key":"id"}]}},"response":[{"id":"88916597-3fd6-4be6-a09e-b7c8369d9be3","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/token/price_change/:id?pastTime=2024-01-01T00:00:00Z","host":["https://api.arkm.com"],"path":["token","price_change",":id"],"query":[{"key":"pastTime","value":"2024-01-01T00:00:00Z","description":"Required. Past timestamp in RFC3339 format to calculate price change from."}],"variable":[{"key":"id","value":"usd-coin","description":"Required. The CoinGecko pricing ID of the token."}]},"description":"Returns the token's current price and its historical price at the requested past timestamp. The absolute or percentage change can be computed from the two values."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"currentPrice\": 0.999831,\n  \"historicalPrice\": 0.999357,\n  \"pricingID\": \"usd-coin\"\n}"}],"_postman_id":"e3f14ceb-bad3-4042-972b-5464232c1fbe"},{"name":"Get top tokens by exchange activity","id":"3a30426a-178b-4784-a60a-bfb0cf62e15c","request":{"method":"GET","header":[],"url":"https://api.arkm.com/token/top?timeframe=1h&orderByAgg=volume&orderByDesc=true&orderByPercent=true&from=0&size=50","description":"<p>Analyzes token activity across centralized and decentralized exchanges. Ranks tokens by volume, inflows, outflows, netflows, and other metrics over customizable time intervals.</p>\n<p>Supports filtering by chain, market cap, and specific tokens.</p>\n<p>Each result reports 'current' (metrics over the selected timeframe) and 'previous' (the same metrics averaged across the numReferencePeriods prior windows, each the length of the timeframe); the two are compared to produce the change and percentage rankings.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["token","top"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Required. Time interval for aggregation.</p>\n","type":"text/plain"},"key":"timeframe","value":"1h"},{"description":{"content":"<p>Required. Metric to sort by.</p>\n","type":"text/plain"},"key":"orderByAgg","value":"volume"},{"description":{"content":"<p>Required. Sort order. Use 'true' for descending, 'false' for ascending.</p>\n","type":"text/plain"},"key":"orderByDesc","value":"true"},{"description":{"content":"<p>Required. If 'true', sort by percentage change rather than absolute values.</p>\n","type":"text/plain"},"key":"orderByPercent","value":"true"},{"description":{"content":"<p>Required. Pagination offset (starting index).</p>\n","type":"text/plain"},"key":"from","value":"0"},{"description":{"content":"<p>Required. Number of results to return per page.</p>\n","type":"text/plain"},"key":"size","value":"50"},{"disabled":true,"description":{"content":"<p>Optional. Minimum volume filter in USD.</p>\n","type":"text/plain"},"key":"minVolume","value":"1000000"},{"disabled":true,"description":{"content":"<p>Optional. Maximum volume filter in USD.</p>\n","type":"text/plain"},"key":"maxVolume","value":"1000000000"},{"disabled":true,"description":{"content":"<p>Optional. Minimum market cap filter in USD.</p>\n","type":"text/plain"},"key":"minMarketCap","value":"1000000"},{"disabled":true,"description":{"content":"<p>Optional. Maximum market cap filter in USD.</p>\n","type":"text/plain"},"key":"maxMarketCap","value":"10000000000000"},{"disabled":true,"description":{"content":"<p>Optional. Number of prior periods (each the length of the timeframe) used as the historical baseline the current period is compared against. Default: auto (6 periods for 1h, 1 for longer timeframes). Max: 10.</p>\n","type":"text/plain"},"key":"numReferencePeriods","value":"auto"},{"disabled":true,"description":{"content":"<p>Optional. Comma-separated list of CoinGecko token IDs to filter results.</p>\n","type":"text/plain"},"key":"tokenIds","value":"usd-coin,tether"},{"disabled":true,"description":{"content":"<p>Optional. Chains to filter by, as a single comma-separated string, e.g. 'ethereum,bsc' (not a JSON array). If omitted, returns all supported chains.</p>\n","type":"text/plain"},"key":"chains","value":"ethereum,bsc,polygon"}],"variable":[]}},"response":[{"id":"bfd5ebd9-cbb5-468b-bd3e-205f2f395a12","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/token/top?timeframe=1h&orderByAgg=volume&orderByDesc=true&orderByPercent=true&from=0&size=50","host":["https://api.arkm.com"],"path":["token","top"],"query":[{"key":"timeframe","value":"1h","description":"Required. Time interval for aggregation."},{"key":"orderByAgg","value":"volume","description":"Required. Metric to sort by."},{"key":"orderByDesc","value":"true","description":"Required. Sort order. Use 'true' for descending, 'false' for ascending."},{"key":"orderByPercent","value":"true","description":"Required. If 'true', sort by percentage change rather than absolute values."},{"key":"from","value":"0","description":"Required. Pagination offset (starting index)."},{"key":"size","value":"50","description":"Required. Number of results to return per page."},{"key":"minVolume","value":"1000000","description":"Optional. Minimum volume filter in USD.","disabled":true},{"key":"maxVolume","value":"1000000000","description":"Optional. Maximum volume filter in USD.","disabled":true},{"key":"minMarketCap","value":"1000000","description":"Optional. Minimum market cap filter in USD.","disabled":true},{"key":"maxMarketCap","value":"10000000000000","description":"Optional. Maximum market cap filter in USD.","disabled":true},{"key":"numReferencePeriods","value":"auto","description":"Optional. Number of prior periods (each the length of the timeframe) used as the historical baseline the current period is compared against. Default: auto (6 periods for 1h, 1 for longer timeframes). Max: 10.","disabled":true},{"key":"tokenIds","value":"usd-coin,tether","description":"Optional. Comma-separated list of CoinGecko token IDs to filter results.","disabled":true},{"key":"chains","value":"ethereum,bsc,polygon","description":"Optional. Chains to filter by, as a single comma-separated string, e.g. 'ethereum,bsc' (not a JSON array). If omitted, returns all supported chains.","disabled":true}]},"description":"Analyzes token activity across centralized and decentralized exchanges. Ranks tokens by volume, inflows, outflows, netflows, and other metrics over customizable time intervals.\n\nSupports filtering by chain, market cap, and specific tokens.\n\nEach result reports 'current' (metrics over the selected timeframe) and 'previous' (the same metrics averaged across the numReferencePeriods prior windows, each the length of the timeframe); the two are compared to produce the change and percentage rankings."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"tokens\": [\n    {\n      \"current\": {\n        \"inflowCexVolume\": 181200000,\n        \"inflowDexVolume\": 152300000,\n        \"outflowCexVolume\": 179400000,\n        \"outflowDexVolume\": 151800000,\n        \"price\": 0.999831\n      },\n      \"previous\": {\n        \"inflowCexVolume\": 176500000,\n        \"inflowDexVolume\": 148100000,\n        \"outflowCexVolume\": 175300000,\n        \"outflowDexVolume\": 149200000,\n        \"price\": 0.999797\n      },\n      \"token\": {\n        \"id\": \"usd-coin\",\n        \"marketCap\": 73340976893,\n        \"symbol\": \"USDC\"\n      }\n    }\n  ],\n  \"total\": 8189\n}"}],"_postman_id":"3a30426a-178b-4784-a60a-bfb0cf62e15c"},{"name":"Get top token flow","id":"bd822fff-3003-4d29-ad2a-16674b847340","request":{"method":"GET","header":[],"url":"https://api.arkm.com/token/top_flow/:chain/:address?timeLast=24h","description":"<p>Retrieves the top token flow (in USD and value) for the specified chain and address over a given duration.</p>\n<p>Only chains with token contracts (EVM chains, Solana, Tron) return token flows here. For UTXO assets like Bitcoin, use the pricing-ID form (/token/top_flow/{id}) for native flows.</p>\n<p><strong>Rate Limit</strong>: This endpoint has a stricter rate limit of 1 request per second.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["token","top_flow",":chain",":address"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Required. Time range filter using relative durations.</p>\n","type":"text/plain"},"key":"timeLast","value":"24h"},{"disabled":true,"description":{"content":"<p>Optional. Maximum number of addresses to return per flow direction. Default: 50. Max: 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"},{"disabled":true,"description":{"content":"<p>Optional. Ignored on this endpoint form — the chain is already fixed by the path. Use the pricing-ID form of this endpoint to filter flows by chain.</p>\n","type":"text/plain"},"key":"chains","value":"ethereum,bsc,polygon"}],"variable":[{"id":"06249e7e-4af9-46cc-82bc-fc5ca6913b29","description":{"content":"<p>Required. Blockchain network where the token is deployed.</p>\n","type":"text/plain"},"type":"any","value":"ethereum","key":"chain"},{"id":"b387af0c-99d7-4da9-addd-b60adc57601e","description":{"content":"<p>Required. The token contract address.</p>\n","type":"text/plain"},"type":"any","value":"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","key":"address"}]}},"response":[{"id":"7cc2afa2-824e-4fa2-8fdf-1fd492713e72","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/token/top_flow/:chain/:address?timeLast=24h","host":["https://api.arkm.com"],"path":["token","top_flow",":chain",":address"],"query":[{"key":"timeLast","value":"24h","description":"Required. Time range filter using relative durations."},{"key":"limit","value":"5","description":"Optional. Maximum number of addresses to return per flow direction. Default: 50. Max: 100.","disabled":true},{"key":"chains","value":"ethereum,bsc,polygon","description":"Optional. Ignored on this endpoint form — the chain is already fixed by the path. Use the pricing-ID form of this endpoint to filter flows by chain.","disabled":true}],"variable":[{"key":"chain","value":"ethereum","description":"Required. Blockchain network where the token is deployed."},{"key":"address","value":"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","description":"Required. The token contract address."}]},"description":"Retrieves the top token flow (in USD and value) for the specified chain and address over a given duration.\n\nOnly chains with token contracts (EVM chains, Solana, Tron) return token flows here. For UTXO assets like Bitcoin, use the pricing-ID form (/token/top_flow/{id}) for native flows.\n\n**Rate Limit**: This endpoint has a stricter rate limit of 1 request per second."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"address\": {\n      \"address\": \"0xBBBBBbbBBb9cC5e90e3b3Af64bdAF62C37EEFFCb\",\n      \"arkhamEntity\": {\n        \"crunchbase\": \"https://www.crunchbase.com/organization/morpho-labs\",\n        \"id\": \"morpho\",\n        \"linkedin\": \"https://www.linkedin.com/company/morpho-labs\",\n        \"name\": \"Morpho\",\n        \"note\": \"\",\n        \"service\": null,\n        \"twitter\": \"https://twitter.com/MorphoLabs\",\n        \"type\": \"lending-decentralized\",\n        \"website\": \"https://morpho.org\"\n      },\n      \"arkhamLabel\": {\n        \"address\": \"0xBBBBBbbBBb9cC5e90e3b3Af64bdAF62C37EEFFCb\",\n        \"chainType\": \"evm\",\n        \"name\": \"Morpho Blue\"\n      },\n      \"chain\": \"ethereum\",\n      \"contract\": true,\n      \"isUserAddress\": false\n    },\n    \"inUSD\": 8464010273.634033,\n    \"inValue\": 8464010259.6050005,\n    \"outUSD\": 8467229188.141229,\n    \"outValue\": 8467229174.00334\n  },\n  {\n    \"address\": {\n      \"address\": \"0x06CFf7088619C7178F5e14f0B119458d08d2f5ef\",\n      \"arkhamLabel\": {\n        \"address\": \"0x06CFf7088619C7178F5e14f0B119458d08d2f5ef\",\n        \"chainType\": \"evm\",\n        \"name\": \"MEV Bot\"\n      },\n      \"chain\": \"ethereum\",\n      \"contract\": true,\n      \"isUserAddress\": false\n    },\n    \"inUSD\": 2757517313.9577456,\n    \"inValue\": 2757517326.099296,\n    \"outUSD\": 2757671412.9492354,\n    \"outValue\": 2757671425.122005\n  }\n]"}],"_postman_id":"bd822fff-3003-4d29-ad2a-16674b847340"},{"name":"Get top flow for a token by pricing ID","id":"25c5ce34-4065-4c5a-9b63-16cfb7d099d9","request":{"method":"GET","header":[],"url":"https://api.arkm.com/token/top_flow/:id?timeLast=24h","description":"<p>Returns the top inflows/outflows for the specified token ID, aggregated by address.</p>\n<p><strong>Rate Limit</strong>: This endpoint has a stricter rate limit of 1 request per second.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["token","top_flow",":id"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Required. Time range filter using relative durations.</p>\n","type":"text/plain"},"key":"timeLast","value":"24h"},{"disabled":true,"description":{"content":"<p>Optional. Maximum number of addresses to return per flow direction. Default: 50. Max: 100.</p>\n","type":"text/plain"},"key":"limit","value":"5"},{"disabled":true,"description":{"content":"<p>Optional. Chains to filter by, as a single comma-separated string, e.g. 'ethereum,bsc' (not a JSON array). If omitted, returns all supported chains.</p>\n","type":"text/plain"},"key":"chains","value":"ethereum,bsc,polygon"}],"variable":[{"id":"51cc0740-13d1-4214-8d3e-6026bbb4aa74","description":{"content":"<p>Required. The CoinGecko pricing ID of the token.</p>\n","type":"text/plain"},"type":"any","value":"usd-coin","key":"id"}]}},"response":[{"id":"d7b51374-1528-4450-9f1e-9a8382bd3893","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/token/top_flow/:id?timeLast=24h","host":["https://api.arkm.com"],"path":["token","top_flow",":id"],"query":[{"key":"timeLast","value":"24h","description":"Required. Time range filter using relative durations."},{"key":"limit","value":"5","description":"Optional. Maximum number of addresses to return per flow direction. Default: 50. Max: 100.","disabled":true},{"key":"chains","value":"ethereum,bsc,polygon","description":"Optional. Chains to filter by, as a single comma-separated string, e.g. 'ethereum,bsc' (not a JSON array). If omitted, returns all supported chains.","disabled":true}],"variable":[{"key":"id","value":"usd-coin","description":"Required. The CoinGecko pricing ID of the token."}]},"description":"Returns the top inflows/outflows for the specified token ID, aggregated by address.\n\n**Rate Limit**: This endpoint has a stricter rate limit of 1 request per second."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"address\": {\n      \"address\": \"0xBBBBBbbBBb9cC5e90e3b3Af64bdAF62C37EEFFCb\",\n      \"arkhamEntity\": {\n        \"crunchbase\": \"https://www.crunchbase.com/organization/morpho-labs\",\n        \"id\": \"morpho\",\n        \"linkedin\": \"https://www.linkedin.com/company/morpho-labs\",\n        \"name\": \"Morpho\",\n        \"note\": \"\",\n        \"service\": null,\n        \"twitter\": \"https://twitter.com/MorphoLabs\",\n        \"type\": \"lending-decentralized\",\n        \"website\": \"https://morpho.org\"\n      },\n      \"arkhamLabel\": {\n        \"address\": \"0xBBBBBbbBBb9cC5e90e3b3Af64bdAF62C37EEFFCb\",\n        \"chainType\": \"evm\",\n        \"name\": \"Morpho Blue\"\n      },\n      \"chain\": \"ethereum\",\n      \"contract\": true,\n      \"isUserAddress\": false\n    },\n    \"inUSD\": 12979047524.191177,\n    \"inValue\": 12979047525.961317,\n    \"outUSD\": 12971777421.736961,\n    \"outValue\": 12971777423.626078\n  },\n  {\n    \"address\": {\n      \"address\": \"0x61040E143A77F165Ba44543AF4A079F2C809D14b\",\n      \"arkhamLabel\": {\n        \"address\": \"0x61040E143A77F165Ba44543AF4A079F2C809D14b\",\n        \"chainType\": \"evm\",\n        \"name\": \"Proxy (EIP-1967 Transparent)\"\n      },\n      \"chain\": \"base\",\n      \"contract\": true,\n      \"isUserAddress\": false\n    },\n    \"inUSD\": 4866908061.438353,\n    \"inValue\": 4866908062.542056,\n    \"outUSD\": 4866351186.855593,\n    \"outValue\": 4866351187.380329\n  }\n]"}],"_postman_id":"25c5ce34-4065-4c5a-9b63-16cfb7d099d9"},{"name":"Get trending tokens","id":"bd80187d-297f-48e2-8bdb-63e78b6b95d8","request":{"method":"GET","header":[],"url":"https://api.arkm.com/token/trending","description":"<p>Returns a list of currently trending tokens across multiple chains.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["token","trending"],"host":["https://api.arkm.com"],"query":[],"variable":[]}},"response":[{"id":"ade1f6bc-0ca1-4090-8e62-01573bd083d3","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.arkm.com/token/trending","description":"Returns a list of currently trending tokens across multiple chains."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"identifier\": {\n      \"pricingID\": \"bitcoin\"\n    },\n    \"name\": \"Bitcoin\",\n    \"symbol\": \"btc\"\n  },\n  {\n    \"identifier\": {\n      \"pricingID\": \"ethereum\"\n    },\n    \"name\": \"Ethereum\",\n    \"symbol\": \"eth\"\n  }\n]"}],"_postman_id":"bd80187d-297f-48e2-8bdb-63e78b6b95d8"},{"name":"Get a single trending token by ID","id":"06c05cbd-7d3c-402d-a9fc-822d11f8c612","request":{"method":"GET","header":[],"url":"https://api.arkm.com/token/trending/:id","description":"<p>Returns a single trending token, identified by a specific ID (e.g., \"bitcoin\", \"ethereum\").</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["token","trending",":id"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"82d9d9ca-e467-431d-a3ff-82b68069eb54","description":{"content":"<p>Required. The CoinGecko pricing ID of the token.</p>\n","type":"text/plain"},"type":"any","value":"usd-coin","key":"id"}]}},"response":[{"id":"9e3f524d-f3c9-4f62-b48b-ed2fdf3ae855","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/token/trending/:id","host":["https://api.arkm.com"],"path":["token","trending",":id"],"variable":[{"key":"id","value":"usd-coin","description":"Required. The CoinGecko pricing ID of the token."}]},"description":"Returns a single trending token, identified by a specific ID (e.g., \"bitcoin\", \"ethereum\")."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"allTimeHigh\": 1.043,\n  \"allTimeLow\": 0.877647,\n  \"circulatingSupply\": 73354602419.50252,\n  \"name\": \"USDC\",\n  \"price\": 0.999831,\n  \"price24hAgo\": 0.999825,\n  \"pricingID\": \"usd-coin\",\n  \"symbol\": \"usdc\",\n  \"totalSupply\": 73355068862.08713,\n  \"volume24h\": 7539296441\n}"}],"_postman_id":"06c05cbd-7d3c-402d-a9fc-822d11f8c612"},{"name":"Get volume for a token by chain/address","id":"9574e9a7-30c5-4229-b867-ca1e288cd614","request":{"method":"GET","header":[],"url":"https://api.arkm.com/token/volume/:chain/:address?granularity=1h","description":"<p>Returns exchange flow for the specified token contract on a given chain, bucketed by time.</p>\n<p>Each bucket reports the token's flows to and from the largest exchanges: inUSD and inValue are the amounts moving into exchanges, outUSD and outValue the amounts moving back out, denominated in USD and in token units respectively.</p>\n<p>This form looks the token up by its contract address, so it only covers chains that have token contracts (EVM chains, Solana, Tron). UTXO assets such as Bitcoin and Dogecoin have no token contract and return no data here; use the pricing-ID form (/token/volume/{id}) for their native flows.</p>\n<p><strong>Rate Limit</strong>: This endpoint has a stricter rate limit of 1 request per second.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["token","volume",":chain",":address"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Required. Bucket size for the histogram. Use a whole number of hours, from 1h up to 7d (e.g. 1h, 2h, 6h, 12h, 1d, 2d, 3d, 7d); sub-hour values and durations over 7d are rejected. Only applied when timeLast is under 30 days; for longer or omitted ranges, results are always returned in daily buckets.</p>\n","type":"text/plain"},"key":"granularity","value":"1h"},{"disabled":true,"description":{"content":"<p>Optional. Time range to return, as a relative duration such as '24h', '7d', or '60d'. Under 30 days, results honor granularity; 30 days or longer returns daily buckets. If omitted, returns all-time data in daily buckets.</p>\n","type":"text/plain"},"key":"timeLast","value":"24h"}],"variable":[{"id":"f9e26318-c8dd-494a-bc5c-123a84360c88","description":{"content":"<p>Required. Blockchain network where the token is deployed.</p>\n","type":"text/plain"},"type":"any","value":"ethereum","key":"chain"},{"id":"7d58bf4a-319a-4598-944d-03f39aca253d","description":{"content":"<p>Required. The token contract address.</p>\n","type":"text/plain"},"type":"any","value":"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","key":"address"}]}},"response":[{"id":"630c4fad-782a-44f0-a820-6cd6296f4230","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/token/volume/:chain/:address?granularity=1h","host":["https://api.arkm.com"],"path":["token","volume",":chain",":address"],"query":[{"key":"granularity","value":"1h","description":"Required. Bucket size for the histogram. Use a whole number of hours, from 1h up to 7d (e.g. 1h, 2h, 6h, 12h, 1d, 2d, 3d, 7d); sub-hour values and durations over 7d are rejected. Only applied when timeLast is under 30 days; for longer or omitted ranges, results are always returned in daily buckets."},{"key":"timeLast","value":"24h","description":"Optional. Time range to return, as a relative duration such as '24h', '7d', or '60d'. Under 30 days, results honor granularity; 30 days or longer returns daily buckets. If omitted, returns all-time data in daily buckets.","disabled":true}],"variable":[{"key":"chain","value":"ethereum","description":"Required. Blockchain network where the token is deployed."},{"key":"address","value":"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","description":"Required. The token contract address."}]},"description":"Returns exchange flow for the specified token contract on a given chain, bucketed by time.\n\nEach bucket reports the token's flows to and from the largest exchanges: inUSD and inValue are the amounts moving into exchanges, outUSD and outValue the amounts moving back out, denominated in USD and in token units respectively.\n\nThis form looks the token up by its contract address, so it only covers chains that have token contracts (EVM chains, Solana, Tron). UTXO assets such as Bitcoin and Dogecoin have no token contract and return no data here; use the pricing-ID form (/token/volume/{id}) for their native flows.\n\n**Rate Limit**: This endpoint has a stricter rate limit of 1 request per second."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"inUSD\": 968891.0319822108,\n    \"inValue\": 968891.037339,\n    \"outUSD\": 1233415.5464420319,\n    \"outValue\": 1233415.563605,\n    \"time\": \"2026-07-12T16:00:00Z\"\n  },\n  {\n    \"inUSD\": 1187226.4781189265,\n    \"inValue\": 1187226.461162,\n    \"outUSD\": 1275054.663351059,\n    \"outValue\": 1275054.650006,\n    \"time\": \"2026-07-12T17:00:00Z\"\n  }\n]"}],"_postman_id":"9574e9a7-30c5-4229-b867-ca1e288cd614"},{"name":"Get volume for a token by pricing ID","id":"ffbbea97-d9fc-42f3-be4a-e0b4b3ebf16b","request":{"method":"GET","header":[],"url":"https://api.arkm.com/token/volume/:id?granularity=1h","description":"<p>Returns exchange flow for the specified token, bucketed by time.</p>\n<p>Each bucket reports the token's flows to and from the largest exchanges: inUSD and inValue are the amounts moving into exchanges, outUSD and outValue the amounts moving back out, denominated in USD and in token units respectively.</p>\n<p>This form resolves the token by pricing ID, so it also covers native assets such as Bitcoin and Dogecoin.</p>\n<p><strong>Rate Limit</strong>: This endpoint has a stricter rate limit of 1 request per second.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["token","volume",":id"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Required. Bucket size for the histogram. Use a whole number of hours, from 1h up to 7d (e.g. 1h, 2h, 6h, 12h, 1d, 2d, 3d, 7d); sub-hour values and durations over 7d are rejected. Only applied when timeLast is under 30 days; for longer or omitted ranges, results are always returned in daily buckets.</p>\n","type":"text/plain"},"key":"granularity","value":"1h"},{"disabled":true,"description":{"content":"<p>Optional. Time range to return, as a relative duration such as '24h', '7d', or '60d'. Under 30 days, results honor granularity; 30 days or longer returns daily buckets. If omitted, returns all-time data in daily buckets.</p>\n","type":"text/plain"},"key":"timeLast","value":"24h"}],"variable":[{"id":"cb409c7b-13ef-4200-bfdb-6e569c6bf0ae","description":{"content":"<p>Required. The CoinGecko pricing ID of the token.</p>\n","type":"text/plain"},"type":"any","value":"bitcoin","key":"id"}]}},"response":[{"id":"6668c702-c3f6-4321-84b6-0c2f07979956","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/token/volume/:id?granularity=1h","host":["https://api.arkm.com"],"path":["token","volume",":id"],"query":[{"key":"granularity","value":"1h","description":"Required. Bucket size for the histogram. Use a whole number of hours, from 1h up to 7d (e.g. 1h, 2h, 6h, 12h, 1d, 2d, 3d, 7d); sub-hour values and durations over 7d are rejected. Only applied when timeLast is under 30 days; for longer or omitted ranges, results are always returned in daily buckets."},{"key":"timeLast","value":"24h","description":"Optional. Time range to return, as a relative duration such as '24h', '7d', or '60d'. Under 30 days, results honor granularity; 30 days or longer returns daily buckets. If omitted, returns all-time data in daily buckets.","disabled":true}],"variable":[{"key":"id","value":"bitcoin","description":"Required. The CoinGecko pricing ID of the token."}]},"description":"Returns exchange flow for the specified token, bucketed by time.\n\nEach bucket reports the token's flows to and from the largest exchanges: inUSD and inValue are the amounts moving into exchanges, outUSD and outValue the amounts moving back out, denominated in USD and in token units respectively.\n\nThis form resolves the token by pricing ID, so it also covers native assets such as Bitcoin and Dogecoin.\n\n**Rate Limit**: This endpoint has a stricter rate limit of 1 request per second."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"inUSD\": 2399721.9841460586,\n    \"inValue\": 37.44615725,\n    \"outUSD\": 6826024.15839386,\n    \"outValue\": 106.51191897,\n    \"time\": \"2026-07-12T16:00:00Z\"\n  },\n  {\n    \"inUSD\": 3211115.482628137,\n    \"inValue\": 50.12274685,\n    \"outUSD\": 4771902.633152008,\n    \"outValue\": 74.42026910000001,\n    \"time\": \"2026-07-12T17:00:00Z\"\n  }\n]"}],"_postman_id":"ffbbea97-d9fc-42f3-be4a-e0b4b3ebf16b"}],"id":"997d85f0-bcf3-4798-af35-b6a833bb3b61","_postman_id":"997d85f0-bcf3-4798-af35-b6a833bb3b61","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}}},{"name":"transfers","item":[{"name":"Get transfers","id":"cd1d9dc7-0b11-4b57-ae17-13ce7d2c2818","request":{"method":"GET","header":[],"url":"https://api.arkm.com/transfers?base=binance&chains=ethereum,bsc,polygon","description":"<p>Retrieves a list of transfers based on various query filters.</p>\n<p><strong>Rate Limit</strong>: This endpoint has a stricter rate limit of 1 request per second.</p>\n<p><strong>Sequence ranges:</strong> Every chain numbers its transfers as they are indexed, and <code>includeCursors=true</code> reports each chain's latest number. Pass <strong>seqGte</strong> and <strong>seqLte</strong> to fetch one chain's transfers between two of those numbers — for example, to poll incrementally without missing or repeating a transfer by walking from the last sequence you saw to the latest one reported. A sequence range needs exactly one chain, one whose transfers carry sequences, and may span at most 10,000,000 sequences; a range spanning more is walked in segments, the last of them ending at the chain's reported number. A range must end at or below that number — a <strong>seqLte</strong> beyond it is rejected, because the transfers up to it are not all searchable yet, and a chain reporting no number yet accepts no range at all. Sequences begin when a chain's numbering was introduced, so older transfers carry no <strong>seq</strong> and ranges below the earliest sequenced transfer return nothing. It cannot be combined with <strong>timeLast</strong>, which moves with the clock — use <strong>timeGte</strong> and <strong>timeLte</strong>. A sequence range comes back in ascending sequence order and so cannot be combined with <strong>sortKey</strong> or <strong>sortDir</strong>, and every transfer in it carries its own <strong>seq</strong>. That is how you page a range: a response with fewer than <strong>limit</strong> transfers has completed it, and a full one is continued by repeating the request with <strong>seqGte</strong> set to the last transfer's <strong>seq</strong> plus one. <strong>count</strong> is capped and does not report whether any of the range remains.</p>\n<p><strong>Real-time streaming:</strong> For live transfer notifications instead of polling, use the WebSocket API. See GET /ws/transfers for real-time streaming with the same filtering capabilities.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["transfers"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Optional. Filter from or to any of a comma-separated list of entities or addresses. Prefix a value with '!' to exclude it, or 'type:' to filter by entity type — for example, 'type:cex,!binance' returns all exchanges except binance.</p>\n","type":"text/plain"},"key":"base","value":"binance"},{"description":{"content":"<p>Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,bsc'). If omitted, returns transfers across all supported chains.</p>\n","type":"text/plain"},"key":"chains","value":"ethereum,bsc,polygon"},{"disabled":true,"description":{"content":"<p>Optional. Transfer direction: 'in' (incoming), 'out' (outgoing), 'self' (self-transfers), or 'all'. Default: all.</p>\n","type":"text/plain"},"key":"flow","value":"in"},{"disabled":true,"description":{"content":"<p>Optional. Filter from any of a comma-separated list of addresses, entities, or deposit services. Prefix a value with '!' to exclude it, 'type:' to filter on entity types (such as 'type:cex'), or 'deposit:' to filter on deposit addresses (such as 'deposit:binance').</p>\n","type":"text/plain"},"key":"from","value":"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045,deposit:binance"},{"disabled":true,"description":{"content":"<p>Optional. Filter to any of a comma-separated list of addresses, entities, or deposit services. Prefix a value with '!' to exclude it, 'type:' to filter on entity types (such as 'type:cex'), or 'deposit:' to filter on deposit addresses (such as 'deposit:binance').</p>\n","type":"text/plain"},"key":"to","value":"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045,deposit:binance"},{"disabled":true,"description":{"content":"<p>Optional. list of addresses or entities to treat strictly as counterparties (only base &lt;-&gt; counterparty transfers).</p>\n","type":"text/plain"},"key":"counterparties","value":"binance"},{"disabled":true,"description":{"content":"<p>Optional. Filter involving any of a comma separated list of token addresses or token IDs.</p>\n","type":"text/plain"},"key":"tokens","value":"ethereum,0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"},{"disabled":true,"description":{"content":"<p>Optional. Filter after a specific time (RFC3339, YYYY-MM-DD, or Unix timestamp).</p>\n","type":"text/plain"},"key":"timeGte","value":"2024-01-01T00:00:00Z"},{"disabled":true,"description":{"content":"<p>Optional. Filter before a specific time (RFC3339, YYYY-MM-DD, or Unix timestamp).</p>\n","type":"text/plain"},"key":"timeLte","value":"2024-01-01T00:00:00Z"},{"disabled":true,"description":{"content":"<p>Optional. Filter using a duration string.</p>\n","type":"text/plain"},"key":"timeLast","value":"24h"},{"disabled":true,"description":{"content":"<p>Optional. Filter above a minimum token amount (the quantity of tokens, not the USD value).</p>\n","type":"text/plain"},"key":"valueGte","value":"100.23"},{"disabled":true,"description":{"content":"<p>Optional. Filter below a maximum token amount (the quantity of tokens, not the USD value).</p>\n","type":"text/plain"},"key":"valueLte","value":"100.23"},{"disabled":true,"description":{"content":"<p>Optional. Filter above a minimum historical USD value.</p>\n","type":"text/plain"},"key":"usdGte","value":"100.23"},{"disabled":true,"description":{"content":"<p>Optional. Filter below a maximum historical USD value.</p>\n","type":"text/plain"},"key":"usdLte","value":"100.23"},{"disabled":true,"description":{"content":"<p>Optional. Field by which to sort the results. Default: time. Custom sorting requires authentication; anonymous requests are always sorted by time, descending.</p>\n","type":"text/plain"},"key":"sortKey","value":"time"},{"disabled":true,"description":{"content":"<p>Optional. Direction for sorting results. Default: desc.</p>\n","type":"text/plain"},"key":"sortDir","value":"asc"},{"disabled":true,"description":{"content":"<p>Optional. Maximum number of results to return. Default: 20. Max: 1650.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"disabled":true,"description":{"content":"<p>Optional. Pagination offset. Default: 0. offset + limit must not exceed 10000.</p>\n","type":"text/plain"},"key":"offset","value":"0"},{"disabled":true,"description":{"content":"<p>Optional. Include per-chain as-of cursors in the response. Default: false.</p>\n","type":"text/plain"},"key":"includeCursors","value":"true"},{"disabled":true,"description":{"content":"<p>Optional. Return transfers at or after this chain sequence, as reported in cursors and on each returned transfer. Requires seqLte and exactly one chain, and only chains whose transfers carry sequences are supported. Sequences begin when a chain's numbering was introduced; parts of a range below the earliest sequenced transfer return nothing.</p>\n","type":"text/plain"},"key":"seqGte","value":"454726633"},{"disabled":true,"description":{"content":"<p>Optional. Return transfers at or before this chain sequence. Requires seqGte, and the range may span at most 10,000,000 sequences. Must be at or below the chain's latest sequence as reported by includeCursors; a higher value is rejected, as is any range on a chain that reports no sequence yet. A sequence range cannot be combined with timeLast; use timeGte and timeLte.</p>\n","type":"text/plain"},"key":"seqLte","value":"454726733"}],"variable":[]}},"response":[{"id":"314a7df4-0e9e-4103-bc74-9a5e4f1c5a10","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/transfers?base=binance&chains=ethereum,bsc,polygon","host":["https://api.arkm.com"],"path":["transfers"],"query":[{"key":"base","value":"binance","description":"Optional. Filter from or to any of a comma-separated list of entities or addresses. Prefix a value with '!' to exclude it, or 'type:' to filter by entity type — for example, 'type:cex,!binance' returns all exchanges except binance."},{"key":"chains","value":"ethereum,bsc,polygon","description":"Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,bsc'). If omitted, returns transfers across all supported chains."},{"key":"flow","value":"in","description":"Optional. Transfer direction: 'in' (incoming), 'out' (outgoing), 'self' (self-transfers), or 'all'. Default: all.","disabled":true},{"key":"from","value":"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045,deposit:binance","description":"Optional. Filter from any of a comma-separated list of addresses, entities, or deposit services. Prefix a value with '!' to exclude it, 'type:' to filter on entity types (such as 'type:cex'), or 'deposit:' to filter on deposit addresses (such as 'deposit:binance').","disabled":true},{"key":"to","value":"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045,deposit:binance","description":"Optional. Filter to any of a comma-separated list of addresses, entities, or deposit services. Prefix a value with '!' to exclude it, 'type:' to filter on entity types (such as 'type:cex'), or 'deposit:' to filter on deposit addresses (such as 'deposit:binance').","disabled":true},{"key":"counterparties","value":"binance","description":"Optional. list of addresses or entities to treat strictly as counterparties (only base <-> counterparty transfers).","disabled":true},{"key":"tokens","value":"ethereum,0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","description":"Optional. Filter involving any of a comma separated list of token addresses or token IDs.","disabled":true},{"key":"timeGte","value":"2024-01-01T00:00:00Z","description":"Optional. Filter after a specific time (RFC3339, YYYY-MM-DD, or Unix timestamp).","disabled":true},{"key":"timeLte","value":"2024-01-01T00:00:00Z","description":"Optional. Filter before a specific time (RFC3339, YYYY-MM-DD, or Unix timestamp).","disabled":true},{"key":"timeLast","value":"24h","description":"Optional. Filter using a duration string.","disabled":true},{"key":"valueGte","value":"100.23","description":"Optional. Filter above a minimum token amount (the quantity of tokens, not the USD value).","disabled":true},{"key":"valueLte","value":"100.23","description":"Optional. Filter below a maximum token amount (the quantity of tokens, not the USD value).","disabled":true},{"key":"usdGte","value":"100.23","description":"Optional. Filter above a minimum historical USD value.","disabled":true},{"key":"usdLte","value":"100.23","description":"Optional. Filter below a maximum historical USD value.","disabled":true},{"key":"sortKey","value":"time","description":"Optional. Field by which to sort the results. Default: time. Custom sorting requires authentication; anonymous requests are always sorted by time, descending.","disabled":true},{"key":"sortDir","value":"asc","description":"Optional. Direction for sorting results. Default: desc.","disabled":true},{"key":"limit","value":"10","description":"Optional. Maximum number of results to return. Default: 20. Max: 1650.","disabled":true},{"key":"offset","value":"0","description":"Optional. Pagination offset. Default: 0. offset + limit must not exceed 10000.","disabled":true},{"key":"includeCursors","value":"true","description":"Optional. Include per-chain as-of cursors in the response. Default: false.","disabled":true},{"key":"seqGte","value":"454726633","description":"Optional. Return transfers at or after this chain sequence, as reported in cursors and on each returned transfer. Requires seqLte and exactly one chain, and only chains whose transfers carry sequences are supported. Sequences begin when a chain's numbering was introduced; parts of a range below the earliest sequenced transfer return nothing.","disabled":true},{"key":"seqLte","value":"454726733","description":"Optional. Return transfers at or before this chain sequence. Requires seqGte, and the range may span at most 10,000,000 sequences. Must be at or below the chain's latest sequence as reported by includeCursors; a higher value is rejected, as is any range on a chain that reports no sequence yet. A sequence range cannot be combined with timeLast; use timeGte and timeLte.","disabled":true}]},"description":"Retrieves a list of transfers based on various query filters.\n\n**Rate Limit**: This endpoint has a stricter rate limit of 1 request per second.\n\n**Sequence ranges:** Every chain numbers its transfers as they are indexed, and `includeCursors=true` reports each chain's latest number. Pass **seqGte** and **seqLte** to fetch one chain's transfers between two of those numbers — for example, to poll incrementally without missing or repeating a transfer by walking from the last sequence you saw to the latest one reported. A sequence range needs exactly one chain, one whose transfers carry sequences, and may span at most 10,000,000 sequences; a range spanning more is walked in segments, the last of them ending at the chain's reported number. A range must end at or below that number — a **seqLte** beyond it is rejected, because the transfers up to it are not all searchable yet, and a chain reporting no number yet accepts no range at all. Sequences begin when a chain's numbering was introduced, so older transfers carry no **seq** and ranges below the earliest sequenced transfer return nothing. It cannot be combined with **timeLast**, which moves with the clock — use **timeGte** and **timeLte**. A sequence range comes back in ascending sequence order and so cannot be combined with **sortKey** or **sortDir**, and every transfer in it carries its own **seq**. That is how you page a range: a response with fewer than **limit** transfers has completed it, and a full one is continued by repeating the request with **seqGte** set to the last transfer's **seq** plus one. **count** is capped and does not report whether any of the range remains.\n\n**Real-time streaming:** For live transfer notifications instead of polling, use the WebSocket API. See GET /ws/transfers for real-time streaming with the same filtering capabilities."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"count\": 10000,\n  \"transfers\": [\n    {\n      \"blockHash\": \"0xf65f6387d2b83c76197d5358b0bfbf7de6d082dc6861a7772b494729bd0af455\",\n      \"blockNumber\": 25495862,\n      \"blockTimestamp\": \"2026-07-09T15:16:47Z\",\n      \"chain\": \"ethereum\",\n      \"fromAddress\": {\n        \"address\": \"0xEe7aE85f2Fe2239E27D9c1E23fFFe168D63b4055\",\n        \"arkhamEntity\": {\n          \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n          \"id\": \"binance\",\n          \"linkedin\": \"https://www.linkedin.com/company/binance\",\n          \"name\": \"Binance\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/binance\",\n          \"type\": \"cex\",\n          \"website\": \"https://binance.com\"\n        },\n        \"arkhamLabel\": {\n          \"address\": \"0xEe7aE85f2Fe2239E27D9c1E23fFFe168D63b4055\",\n          \"chainType\": \"evm\",\n          \"name\": \"Hot Wallet\"\n        },\n        \"chain\": \"ethereum\",\n        \"contract\": true,\n        \"isUserAddress\": false\n      },\n      \"fromIsContract\": true,\n      \"historicalUSD\": 2995710.06,\n      \"id\": \"0xaf33dc1e353cc2ba85f67cd25889e79889a7ce41bf28773f904ac27ce8fc2ff3_68\",\n      \"toAddress\": {\n        \"address\": \"0xB5f80b0d276Bc4eCC2E95F9Bd36BC368361f87A6\",\n        \"chain\": \"ethereum\",\n        \"contract\": false,\n        \"isUserAddress\": false\n      },\n      \"toIsContract\": false,\n      \"tokenAddress\": \"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48\",\n      \"tokenDecimals\": 6,\n      \"tokenId\": \"usd-coin\",\n      \"tokenName\": \"USD Coin\",\n      \"tokenSymbol\": \"USDC\",\n      \"transactionHash\": \"0xaf33dc1e353cc2ba85f67cd25889e79889a7ce41bf28773f904ac27ce8fc2ff3\",\n      \"type\": \"\",\n      \"unitValue\": 2995710.06\n    },\n    {\n      \"blockHash\": \"0xfa69e420c70184c582d8cd5c6a84992372bf447b3b5656404be8c1f16c0b9ed7\",\n      \"blockNumber\": 109001701,\n      \"blockTimestamp\": \"2026-07-09T15:13:10Z\",\n      \"chain\": \"bsc\",\n      \"fromAddress\": {\n        \"address\": \"0xdFD961Dc7B7A18f45F041507115a2Fe922250AaC\",\n        \"arkhamLabel\": {\n          \"address\": \"0xdFD961Dc7B7A18f45F041507115a2Fe922250AaC\",\n          \"chainType\": \"evm\",\n          \"name\": \"Binance Deposit\"\n        },\n        \"chain\": \"bsc\",\n        \"contract\": false,\n        \"depositServiceID\": \"binance\",\n        \"isUserAddress\": false\n      },\n      \"fromIsContract\": false,\n      \"historicalUSD\": 1637110.638546851,\n      \"id\": \"0x0349d63753ac6feb7de638455074354c672fa9bd7ba9b7d0b1da61ae3cddd029_258\",\n      \"toAddress\": {\n        \"address\": \"0x8894E0a0c962CB723c1976a4421c95949bE2D4E3\",\n        \"arkhamEntity\": {\n          \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n          \"id\": \"binance\",\n          \"linkedin\": \"https://www.linkedin.com/company/binance\",\n          \"name\": \"Binance\",\n          \"note\": \"\",\n          \"service\": null,\n          \"twitter\": \"https://twitter.com/binance\",\n          \"type\": \"cex\",\n          \"website\": \"https://binance.com\"\n        },\n        \"arkhamLabel\": {\n          \"address\": \"0x8894E0a0c962CB723c1976a4421c95949bE2D4E3\",\n          \"chainType\": \"evm\",\n          \"name\": \"Hot Wallet\"\n        },\n        \"chain\": \"bsc\",\n        \"contract\": false,\n        \"isUserAddress\": false\n      },\n      \"toIsContract\": false,\n      \"tokenAddress\": \"0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d\",\n      \"tokenDecimals\": 18,\n      \"tokenId\": \"binance-bridged-usdc-bnb-smart-chain\",\n      \"tokenName\": \"USD Coin\",\n      \"tokenSymbol\": \"USDC\",\n      \"transactionHash\": \"0x0349d63753ac6feb7de638455074354c672fa9bd7ba9b7d0b1da61ae3cddd029\",\n      \"type\": \"\",\n      \"unitValue\": 1637110.638546851\n    }\n  ]\n}"}],"_postman_id":"cd1d9dc7-0b11-4b57-ae17-13ce7d2c2818"},{"name":"Get a detailed histogram of transfers (API Only)","id":"95561b8d-6e3c-4805-a46e-b23abf3e77d9","request":{"method":"GET","header":[],"url":"https://api.arkm.com/transfers/histogram?base=binance&timeLast=24h&granularity=1h","description":"<p>Returns an aggregated histogram of transfers over time, bucketed by <code>granularity</code>. Each bucket carries the transfer count and the total historical USD value.</p>\n<p><strong>Requires an API key</strong> (browser-session and anonymous access are not permitted).</p>\n<p><strong>A <code>base</code> filter is required.</strong> Without one, the response is an empty list.</p>\n<p><strong>Filtering</strong> uses the same filter parameters as GET /transfers. The response is the complete aggregation over the filtered range — there is no pagination or sorting.</p>\n<p><strong>Rate Limit</strong>: This endpoint has a stricter rate limit of 1 request per second.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["transfers","histogram"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Optional. Filter from or to any of a comma-separated list of entities or addresses. Prefix a value with '!' to exclude it, or 'type:' to filter by entity type — for example, 'type:cex,!binance' returns all exchanges except binance.</p>\n","type":"text/plain"},"key":"base","value":"binance"},{"disabled":true,"description":{"content":"<p>Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,bsc'). If omitted, returns transfers across all supported chains.</p>\n","type":"text/plain"},"key":"chains","value":"ethereum,bsc,polygon"},{"disabled":true,"description":{"content":"<p>Optional. Transfer direction: 'in' (incoming), 'out' (outgoing), 'self' (self-transfers), or 'all'. Default: all.</p>\n","type":"text/plain"},"key":"flow","value":"in"},{"disabled":true,"description":{"content":"<p>Optional. Filter from any of a comma-separated list of addresses, entities, or deposit services. Prefix a value with '!' to exclude it, 'type:' to filter on entity types (such as 'type:cex'), or 'deposit:' to filter on deposit addresses (such as 'deposit:binance').</p>\n","type":"text/plain"},"key":"from","value":"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045,deposit:binance"},{"disabled":true,"description":{"content":"<p>Optional. Filter to any of a comma-separated list of addresses, entities, or deposit services. Prefix a value with '!' to exclude it, 'type:' to filter on entity types (such as 'type:cex'), or 'deposit:' to filter on deposit addresses (such as 'deposit:binance').</p>\n","type":"text/plain"},"key":"to","value":"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045,deposit:binance"},{"disabled":true,"description":{"content":"<p>Optional. list of addresses or entities to treat strictly as counterparties (only base &lt;-&gt; counterparty transfers).</p>\n","type":"text/plain"},"key":"counterparties","value":"binance"},{"disabled":true,"description":{"content":"<p>Optional. Filter involving any of a comma separated list of token addresses or token IDs.</p>\n","type":"text/plain"},"key":"tokens","value":"ethereum,0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"},{"disabled":true,"description":{"content":"<p>Optional. Filter after a specific time (RFC3339, YYYY-MM-DD, or Unix timestamp).</p>\n","type":"text/plain"},"key":"timeGte","value":"2024-01-01T00:00:00Z"},{"disabled":true,"description":{"content":"<p>Optional. Filter before a specific time (RFC3339, YYYY-MM-DD, or Unix timestamp).</p>\n","type":"text/plain"},"key":"timeLte","value":"2024-01-01T00:00:00Z"},{"description":{"content":"<p>Optional. Filter using a duration string.</p>\n","type":"text/plain"},"key":"timeLast","value":"24h"},{"disabled":true,"description":{"content":"<p>Optional. Filter above a minimum token amount (the quantity of tokens, not the USD value).</p>\n","type":"text/plain"},"key":"valueGte","value":"100.23"},{"disabled":true,"description":{"content":"<p>Optional. Filter below a maximum token amount (the quantity of tokens, not the USD value).</p>\n","type":"text/plain"},"key":"valueLte","value":"100.23"},{"disabled":true,"description":{"content":"<p>Optional. Filter above a minimum historical USD value.</p>\n","type":"text/plain"},"key":"usdGte","value":"100.23"},{"disabled":true,"description":{"content":"<p>Optional. Filter below a maximum historical USD value.</p>\n","type":"text/plain"},"key":"usdLte","value":"100.23"},{"description":{"content":"<p>Required. Histogram bucket size. Supported values: '1m' (minute), '1h' (hour), '1d' (day), '1w' (week), '1M' (month), '1q' (quarter), '1y' (year). Note that '1m' is a minute and '1M' is a month.</p>\n","type":"text/plain"},"key":"granularity","value":"1h"}],"variable":[]}},"response":[{"id":"0cd7828c-2310-4172-82aa-ccc7be233428","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/transfers/histogram?base=binance&timeLast=24h&granularity=1h","host":["https://api.arkm.com"],"path":["transfers","histogram"],"query":[{"key":"base","value":"binance","description":"Optional. Filter from or to any of a comma-separated list of entities or addresses. Prefix a value with '!' to exclude it, or 'type:' to filter by entity type — for example, 'type:cex,!binance' returns all exchanges except binance."},{"key":"chains","value":"ethereum,bsc,polygon","description":"Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,bsc'). If omitted, returns transfers across all supported chains.","disabled":true},{"key":"flow","value":"in","description":"Optional. Transfer direction: 'in' (incoming), 'out' (outgoing), 'self' (self-transfers), or 'all'. Default: all.","disabled":true},{"key":"from","value":"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045,deposit:binance","description":"Optional. Filter from any of a comma-separated list of addresses, entities, or deposit services. Prefix a value with '!' to exclude it, 'type:' to filter on entity types (such as 'type:cex'), or 'deposit:' to filter on deposit addresses (such as 'deposit:binance').","disabled":true},{"key":"to","value":"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045,deposit:binance","description":"Optional. Filter to any of a comma-separated list of addresses, entities, or deposit services. Prefix a value with '!' to exclude it, 'type:' to filter on entity types (such as 'type:cex'), or 'deposit:' to filter on deposit addresses (such as 'deposit:binance').","disabled":true},{"key":"counterparties","value":"binance","description":"Optional. list of addresses or entities to treat strictly as counterparties (only base <-> counterparty transfers).","disabled":true},{"key":"tokens","value":"ethereum,0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","description":"Optional. Filter involving any of a comma separated list of token addresses or token IDs.","disabled":true},{"key":"timeGte","value":"2024-01-01T00:00:00Z","description":"Optional. Filter after a specific time (RFC3339, YYYY-MM-DD, or Unix timestamp).","disabled":true},{"key":"timeLte","value":"2024-01-01T00:00:00Z","description":"Optional. Filter before a specific time (RFC3339, YYYY-MM-DD, or Unix timestamp).","disabled":true},{"key":"timeLast","value":"24h","description":"Optional. Filter using a duration string."},{"key":"valueGte","value":"100.23","description":"Optional. Filter above a minimum token amount (the quantity of tokens, not the USD value).","disabled":true},{"key":"valueLte","value":"100.23","description":"Optional. Filter below a maximum token amount (the quantity of tokens, not the USD value).","disabled":true},{"key":"usdGte","value":"100.23","description":"Optional. Filter above a minimum historical USD value.","disabled":true},{"key":"usdLte","value":"100.23","description":"Optional. Filter below a maximum historical USD value.","disabled":true},{"key":"granularity","value":"1h","description":"Required. Histogram bucket size. Supported values: '1m' (minute), '1h' (hour), '1d' (day), '1w' (week), '1M' (month), '1q' (quarter), '1y' (year). Note that '1m' is a minute and '1M' is a month."}]},"description":"Returns an aggregated histogram of transfers over time, bucketed by `granularity`. Each bucket carries the transfer count and the total historical USD value.\n\n**Requires an API key** (browser-session and anonymous access are not permitted).\n\n**A `base` filter is required.** Without one, the response is an empty list.\n\n**Filtering** uses the same filter parameters as GET /transfers. The response is the complete aggregation over the filtered range — there is no pagination or sorting.\n\n**Rate Limit**: This endpoint has a stricter rate limit of 1 request per second."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"count\": 72356,\n    \"time\": \"2026-07-09T19:00:00Z\",\n    \"usd\": 344472247.4625801\n  },\n  {\n    \"count\": 55313,\n    \"time\": \"2026-07-09T20:00:00Z\",\n    \"usd\": 222175399.66528836\n  },\n  {\n    \"count\": 52198,\n    \"time\": \"2026-07-09T21:00:00Z\",\n    \"usd\": 273074291.6125104\n  }\n]"}],"_postman_id":"95561b8d-6e3c-4805-a46e-b23abf3e77d9"},{"name":"Get transfers for a transaction","id":"ce7b37a4-e508-45ed-99a2-8da6adced52b","request":{"method":"GET","header":[],"url":"https://api.arkm.com/transfers/tx/:hash?transferType=token&chain=ethereum","description":"<p>Returns the transfers of a given type (external, internal, or token) within a single transaction, identified by its hash. Available on EVM chains and Tron. For transactions on other chains, including Solana, use GET /tx/{hash} to retrieve the transaction's details instead.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["transfers","tx",":hash"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Required. Type of transfers to return. 'external' = native value transfers, 'internal' = trace calls, 'token' = ERC-20/TRC-20 transfers.</p>\n","type":"text/plain"},"key":"transferType","value":"token"},{"description":{"content":"<p>Required. The blockchain network the transaction is on.</p>\n","type":"text/plain"},"key":"chain","value":"ethereum"}],"variable":[{"id":"7a4c35e7-5151-4428-a7a4-5ec5a5f4ac46","description":{"content":"<p>Required. The transaction hash to retrieve transfers for.</p>\n","type":"text/plain"},"type":"any","value":"0xf141a777ec5211657989b167d137dbc74f1a97984ba8ce3925bd640b78702587","key":"hash"}]}},"response":[{"id":"6735f1ab-044f-464a-bb2c-67e232275b4e","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/transfers/tx/:hash?transferType=token&chain=ethereum","host":["https://api.arkm.com"],"path":["transfers","tx",":hash"],"query":[{"key":"transferType","value":"token","description":"Required. Type of transfers to return. 'external' = native value transfers, 'internal' = trace calls, 'token' = ERC-20/TRC-20 transfers."},{"key":"chain","value":"ethereum","description":"Required. The blockchain network the transaction is on."}],"variable":[{"key":"hash","value":"0xf141a777ec5211657989b167d137dbc74f1a97984ba8ce3925bd640b78702587","description":"Required. The transaction hash to retrieve transfers for."}]},"description":"Returns the transfers of a given type (external, internal, or token) within a single transaction, identified by its hash. Available on EVM chains and Tron. For transactions on other chains, including Solana, use GET /tx/{hash} to retrieve the transaction's details instead."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"blockHash\": \"0x3dac10e206e1da667c23f11ed8e2bca60bcc3bfc63890ae01c28c011ded90dda\",\n    \"blockNumber\": 25294069,\n    \"blockTimestamp\": \"2026-06-11T11:58:35Z\",\n    \"chain\": \"ethereum\",\n    \"fromAddress\": {\n      \"address\": \"0x628E97b796c7186a16d372d2a0717De2d1DB1Cf9\",\n      \"arkhamLabel\": {\n        \"address\": \"0x628E97b796c7186a16d372d2a0717De2d1DB1Cf9\",\n        \"chainType\": \"evm\",\n        \"name\": \"Bitget Deposit\"\n      },\n      \"chain\": \"\",\n      \"contract\": false,\n      \"depositServiceID\": \"bitget\",\n      \"isUserAddress\": false\n    },\n    \"fromIsContract\": false,\n    \"historicalUSD\": 100,\n    \"id\": \"0xf141a777ec5211657989b167d137dbc74f1a97984ba8ce3925bd640b78702587_472\",\n    \"toAddress\": {\n      \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n      \"arkhamEntity\": {\n        \"id\": \"binance\",\n        \"name\": \"Binance\",\n        \"note\": \"\",\n        \"service\": null,\n        \"twitter\": \"https://twitter.com/binance\",\n        \"type\": \"cex\",\n        \"website\": \"https://binance.com\"\n      },\n      \"arkhamLabel\": {\n        \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n        \"chainType\": \"evm\",\n        \"name\": \"Hot Wallet\"\n      },\n      \"chain\": \"\",\n      \"contract\": false,\n      \"isUserAddress\": false\n    },\n    \"toIsContract\": false,\n    \"tokenAddress\": \"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48\",\n    \"tokenDecimals\": 6,\n    \"tokenId\": \"usd-coin\",\n    \"tokenName\": \"USD Coin\",\n    \"tokenSymbol\": \"USDC\",\n    \"transactionHash\": \"0xf141a777ec5211657989b167d137dbc74f1a97984ba8ce3925bd640b78702587\",\n    \"type\": \"token\",\n    \"unitValue\": 100\n  }\n]"}],"_postman_id":"ce7b37a4-e508-45ed-99a2-8da6adced52b"},{"name":"Get unenriched transfers","id":"bf53210b-f982-4a22-a42c-60c6933eb756","request":{"method":"GET","header":[],"url":"https://api.arkm.com/transfers/unenriched?base=binance&chains=ethereum,bsc,polygon","description":"<p>Retrieves a list of transfers based on the same query filters as GET /transfers, but returns raw addresses without Arkham address intelligence.</p>\n<p>Token and transaction metadata are still included. Transfer counterparties are returned as plain addresses, without Arkham entities, labels, deposit services, or predicted entities.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["transfers","unenriched"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Optional. Filter from or to any of a comma-separated list of entities or addresses. Prefix a value with '!' to exclude it, or 'type:' to filter by entity type — for example, 'type:cex,!binance' returns all exchanges except binance.</p>\n","type":"text/plain"},"key":"base","value":"binance"},{"description":{"content":"<p>Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,bsc'). If omitted, returns transfers across all supported chains.</p>\n","type":"text/plain"},"key":"chains","value":"ethereum,bsc,polygon"},{"disabled":true,"description":{"content":"<p>Optional. Transfer direction: 'in' (incoming), 'out' (outgoing), 'self' (self-transfers), or 'all'. Default: all.</p>\n","type":"text/plain"},"key":"flow","value":"in"},{"disabled":true,"description":{"content":"<p>Optional. Filter from any of a comma-separated list of addresses, entities, or deposit services. Prefix a value with '!' to exclude it, 'type:' to filter on entity types (such as 'type:cex'), or 'deposit:' to filter on deposit addresses (such as 'deposit:binance').</p>\n","type":"text/plain"},"key":"from","value":"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045,deposit:binance"},{"disabled":true,"description":{"content":"<p>Optional. Filter to any of a comma-separated list of addresses, entities, or deposit services. Prefix a value with '!' to exclude it, 'type:' to filter on entity types (such as 'type:cex'), or 'deposit:' to filter on deposit addresses (such as 'deposit:binance').</p>\n","type":"text/plain"},"key":"to","value":"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045,deposit:binance"},{"disabled":true,"description":{"content":"<p>Optional. list of addresses or entities to treat strictly as counterparties (only base &lt;-&gt; counterparty transfers).</p>\n","type":"text/plain"},"key":"counterparties","value":"binance"},{"disabled":true,"description":{"content":"<p>Optional. Filter involving any of a comma separated list of token addresses or token IDs.</p>\n","type":"text/plain"},"key":"tokens","value":"ethereum,0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48"},{"disabled":true,"description":{"content":"<p>Optional. Filter after a specific time (RFC3339, YYYY-MM-DD, or Unix timestamp).</p>\n","type":"text/plain"},"key":"timeGte","value":"2024-01-01T00:00:00Z"},{"disabled":true,"description":{"content":"<p>Optional. Filter before a specific time (RFC3339, YYYY-MM-DD, or Unix timestamp).</p>\n","type":"text/plain"},"key":"timeLte","value":"2024-01-01T00:00:00Z"},{"disabled":true,"description":{"content":"<p>Optional. Filter using a duration string.</p>\n","type":"text/plain"},"key":"timeLast","value":"24h"},{"disabled":true,"description":{"content":"<p>Optional. Filter above a minimum token amount (the quantity of tokens, not the USD value).</p>\n","type":"text/plain"},"key":"valueGte","value":"100.23"},{"disabled":true,"description":{"content":"<p>Optional. Filter below a maximum token amount (the quantity of tokens, not the USD value).</p>\n","type":"text/plain"},"key":"valueLte","value":"100.23"},{"disabled":true,"description":{"content":"<p>Optional. Filter above a minimum historical USD value.</p>\n","type":"text/plain"},"key":"usdGte","value":"100.23"},{"disabled":true,"description":{"content":"<p>Optional. Filter below a maximum historical USD value.</p>\n","type":"text/plain"},"key":"usdLte","value":"100.23"},{"disabled":true,"description":{"content":"<p>Optional. Field by which to sort the results. Default: time. Custom sorting requires authentication; anonymous requests are always sorted by time, descending.</p>\n","type":"text/plain"},"key":"sortKey","value":"time"},{"disabled":true,"description":{"content":"<p>Optional. Direction for sorting results. Default: desc.</p>\n","type":"text/plain"},"key":"sortDir","value":"asc"},{"disabled":true,"description":{"content":"<p>Optional. Maximum number of results to return. Default: 20. Max: 1650.</p>\n","type":"text/plain"},"key":"limit","value":"10"},{"disabled":true,"description":{"content":"<p>Optional. Pagination offset. Default: 0. offset + limit must not exceed 10000.</p>\n","type":"text/plain"},"key":"offset","value":"0"},{"disabled":true,"description":{"content":"<p>Optional. Include per-chain as-of cursors in the response. Default: false.</p>\n","type":"text/plain"},"key":"includeCursors","value":"true"},{"disabled":true,"description":{"content":"<p>Optional. Return transfers at or after this chain sequence, as reported in cursors and on each returned transfer. Requires seqLte and exactly one chain, and only chains whose transfers carry sequences are supported. Sequences begin when a chain's numbering was introduced; parts of a range below the earliest sequenced transfer return nothing.</p>\n","type":"text/plain"},"key":"seqGte","value":"454726633"},{"disabled":true,"description":{"content":"<p>Optional. Return transfers at or before this chain sequence. Requires seqGte, and the range may span at most 10,000,000 sequences. Must be at or below the chain's latest sequence as reported by includeCursors; a higher value is rejected, as is any range on a chain that reports no sequence yet. A sequence range cannot be combined with timeLast; use timeGte and timeLte.</p>\n","type":"text/plain"},"key":"seqLte","value":"454726733"}],"variable":[]}},"response":[{"id":"d182fe7d-8b09-47ab-874b-d72def3ae53e","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/transfers/unenriched?base=binance&chains=ethereum,bsc,polygon","host":["https://api.arkm.com"],"path":["transfers","unenriched"],"query":[{"key":"base","value":"binance","description":"Optional. Filter from or to any of a comma-separated list of entities or addresses. Prefix a value with '!' to exclude it, or 'type:' to filter by entity type — for example, 'type:cex,!binance' returns all exchanges except binance."},{"key":"chains","value":"ethereum,bsc,polygon","description":"Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,bsc'). If omitted, returns transfers across all supported chains."},{"key":"flow","value":"in","description":"Optional. Transfer direction: 'in' (incoming), 'out' (outgoing), 'self' (self-transfers), or 'all'. Default: all.","disabled":true},{"key":"from","value":"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045,deposit:binance","description":"Optional. Filter from any of a comma-separated list of addresses, entities, or deposit services. Prefix a value with '!' to exclude it, 'type:' to filter on entity types (such as 'type:cex'), or 'deposit:' to filter on deposit addresses (such as 'deposit:binance').","disabled":true},{"key":"to","value":"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045,deposit:binance","description":"Optional. Filter to any of a comma-separated list of addresses, entities, or deposit services. Prefix a value with '!' to exclude it, 'type:' to filter on entity types (such as 'type:cex'), or 'deposit:' to filter on deposit addresses (such as 'deposit:binance').","disabled":true},{"key":"counterparties","value":"binance","description":"Optional. list of addresses or entities to treat strictly as counterparties (only base <-> counterparty transfers).","disabled":true},{"key":"tokens","value":"ethereum,0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48","description":"Optional. Filter involving any of a comma separated list of token addresses or token IDs.","disabled":true},{"key":"timeGte","value":"2024-01-01T00:00:00Z","description":"Optional. Filter after a specific time (RFC3339, YYYY-MM-DD, or Unix timestamp).","disabled":true},{"key":"timeLte","value":"2024-01-01T00:00:00Z","description":"Optional. Filter before a specific time (RFC3339, YYYY-MM-DD, or Unix timestamp).","disabled":true},{"key":"timeLast","value":"24h","description":"Optional. Filter using a duration string.","disabled":true},{"key":"valueGte","value":"100.23","description":"Optional. Filter above a minimum token amount (the quantity of tokens, not the USD value).","disabled":true},{"key":"valueLte","value":"100.23","description":"Optional. Filter below a maximum token amount (the quantity of tokens, not the USD value).","disabled":true},{"key":"usdGte","value":"100.23","description":"Optional. Filter above a minimum historical USD value.","disabled":true},{"key":"usdLte","value":"100.23","description":"Optional. Filter below a maximum historical USD value.","disabled":true},{"key":"sortKey","value":"time","description":"Optional. Field by which to sort the results. Default: time. Custom sorting requires authentication; anonymous requests are always sorted by time, descending.","disabled":true},{"key":"sortDir","value":"asc","description":"Optional. Direction for sorting results. Default: desc.","disabled":true},{"key":"limit","value":"10","description":"Optional. Maximum number of results to return. Default: 20. Max: 1650.","disabled":true},{"key":"offset","value":"0","description":"Optional. Pagination offset. Default: 0. offset + limit must not exceed 10000.","disabled":true},{"key":"includeCursors","value":"true","description":"Optional. Include per-chain as-of cursors in the response. Default: false.","disabled":true},{"key":"seqGte","value":"454726633","description":"Optional. Return transfers at or after this chain sequence, as reported in cursors and on each returned transfer. Requires seqLte and exactly one chain, and only chains whose transfers carry sequences are supported. Sequences begin when a chain's numbering was introduced; parts of a range below the earliest sequenced transfer return nothing.","disabled":true},{"key":"seqLte","value":"454726733","description":"Optional. Return transfers at or before this chain sequence. Requires seqGte, and the range may span at most 10,000,000 sequences. Must be at or below the chain's latest sequence as reported by includeCursors; a higher value is rejected, as is any range on a chain that reports no sequence yet. A sequence range cannot be combined with timeLast; use timeGte and timeLte.","disabled":true}]},"description":"Retrieves a list of transfers based on the same query filters as GET /transfers, but returns raw addresses without Arkham address intelligence.\n\nToken and transaction metadata are still included. Transfer counterparties are returned as plain addresses, without Arkham entities, labels, deposit services, or predicted entities."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"count\": 10000,\n  \"transfers\": [\n    {\n      \"blockHash\": \"0xf65f6387d2b83c76197d5358b0bfbf7de6d082dc6861a7772b494729bd0af455\",\n      \"blockNumber\": 25495862,\n      \"blockTimestamp\": \"2026-07-09T15:16:47Z\",\n      \"chain\": \"ethereum\",\n      \"fromAddress\": {\n        \"address\": \"0xEe7aE85f2Fe2239E27D9c1E23fFFe168D63b4055\",\n        \"chain\": \"ethereum\"\n      },\n      \"fromIsContract\": true,\n      \"historicalUSD\": 2995710.06,\n      \"id\": \"0xaf33dc1e353cc2ba85f67cd25889e79889a7ce41bf28773f904ac27ce8fc2ff3_68\",\n      \"toAddress\": {\n        \"address\": \"0xB5f80b0d276Bc4eCC2E95F9Bd36BC368361f87A6\",\n        \"chain\": \"ethereum\"\n      },\n      \"toIsContract\": false,\n      \"tokenAddress\": \"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48\",\n      \"tokenDecimals\": 6,\n      \"tokenId\": \"usd-coin\",\n      \"tokenName\": \"USD Coin\",\n      \"tokenSymbol\": \"USDC\",\n      \"transactionHash\": \"0xaf33dc1e353cc2ba85f67cd25889e79889a7ce41bf28773f904ac27ce8fc2ff3\",\n      \"type\": \"\",\n      \"unitValue\": 2995710.06\n    },\n    {\n      \"blockHash\": \"0xfa69e420c70184c582d8cd5c6a84992372bf447b3b5656404be8c1f16c0b9ed7\",\n      \"blockNumber\": 109001701,\n      \"blockTimestamp\": \"2026-07-09T15:13:10Z\",\n      \"chain\": \"bsc\",\n      \"fromAddress\": {\n        \"address\": \"0xdFD961Dc7B7A18f45F041507115a2Fe922250AaC\",\n        \"chain\": \"bsc\"\n      },\n      \"fromIsContract\": false,\n      \"historicalUSD\": 1637110.638546851,\n      \"id\": \"0x0349d63753ac6feb7de638455074354c672fa9bd7ba9b7d0b1da61ae3cddd029_258\",\n      \"toAddress\": {\n        \"address\": \"0x8894E0a0c962CB723c1976a4421c95949bE2D4E3\",\n        \"chain\": \"bsc\"\n      },\n      \"toIsContract\": false,\n      \"tokenAddress\": \"0x8AC76a51cc950d9822D68b83fE1Ad97B32Cd580d\",\n      \"tokenDecimals\": 18,\n      \"tokenId\": \"binance-bridged-usdc-bnb-smart-chain\",\n      \"tokenName\": \"USD Coin\",\n      \"tokenSymbol\": \"USDC\",\n      \"transactionHash\": \"0x0349d63753ac6feb7de638455074354c672fa9bd7ba9b7d0b1da61ae3cddd029\",\n      \"type\": \"\",\n      \"unitValue\": 1637110.638546851\n    }\n  ]\n}"}],"_postman_id":"bf53210b-f982-4a22-a42c-60c6933eb756"}],"id":"7f4a25dc-a755-45f9-86ed-93184af010d7","_postman_id":"7f4a25dc-a755-45f9-86ed-93184af010d7","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}}},{"name":"tx","item":[{"name":"Get transaction details","id":"34c3067c-0ff9-4e80-9505-4af0acadf7cc","request":{"method":"GET","header":[],"url":"https://api.arkm.com/tx/:hash","description":"<p>Retrieves detailed information about a specific blockchain transaction using its hash.</p>\n<p>The endpoint searches across all supported chains to find the transaction. If it is not found in confirmed transactions, it also checks the mempool for pending transactions.</p>\n<p><strong>Response shape.</strong> The response body is a JSON object keyed by chain identifier (for example \"ethereum\"). Because the same hash format can appear on more than one chain, the object may contain more than one entry, one per chain on which the transaction was found. Each value holds that chain's transaction details. The exact set of fields varies by chain, but consumers can generally expect:</p>\n<ul>\n<li>the block number and block timestamp the transaction was included in,</li>\n<li>the sender and recipient addresses,</li>\n<li>gas used and gas-related fields, along with the transaction fee,</li>\n<li>the value transferred in native units and its USD value at the time,</li>\n<li>token details for any tokens involved in the transfer.</li>\n</ul>\n<p><strong>Not found.</strong> If the hash is not found on any supported chain (neither confirmed nor pending), the endpoint returns 404.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["tx",":hash"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"c6a6f4f3-17f9-4b0e-adb3-a47864aac5ab","description":{"content":"<p>Required. The transaction hash to look up.</p>\n","type":"text/plain"},"type":"any","value":"0x5c504ed432cb51138bcf09aa5e8a410dd4a1e204ef84bfed1be16dfba1b22060","key":"hash"}]}},"response":[{"id":"7424c2d2-8ec6-4f1d-9b73-f789e6b60ee9","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/tx/:hash","host":["https://api.arkm.com"],"path":["tx",":hash"],"variable":[{"key":"hash","value":"0x5c504ed432cb51138bcf09aa5e8a410dd4a1e204ef84bfed1be16dfba1b22060","description":"Required. The transaction hash to look up."}]},"description":"Retrieves detailed information about a specific blockchain transaction using its hash.\n\nThe endpoint searches across all supported chains to find the transaction. If it is not found in confirmed transactions, it also checks the mempool for pending transactions.\n\n**Response shape.** The response body is a JSON object keyed by chain identifier (for example \"ethereum\"). Because the same hash format can appear on more than one chain, the object may contain more than one entry, one per chain on which the transaction was found. Each value holds that chain's transaction details. The exact set of fields varies by chain, but consumers can generally expect:\n\n- the block number and block timestamp the transaction was included in,\n- the sender and recipient addresses,\n- gas used and gas-related fields, along with the transaction fee,\n- the value transferred in native units and its USD value at the time,\n- token details for any tokens involved in the transfer.\n\n**Not found.** If the hash is not found on any supported chain (neither confirmed nor pending), the endpoint returns 404."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"abc123\": {\n    \"anyTransfers\": [\n      {\n        \"blockHash\": \"0xb73b329bad7428bdace6623dcd18743fca05b136116c261b63224176d831d\",\n        \"blockNumber\": 22630280,\n        \"blockTimestamp\": \"2025-06-04T09:07:47Z\",\n        \"chain\": \"ethereum\",\n        \"fromAddress\": {\n          \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n          \"arkhamEntity\": {\n            \"addresses\": {\n              \"abc123\": [\n                \"abc123\"\n              ]\n            },\n            \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n            \"customImageSlug\": \"binance\",\n            \"customized\": true,\n            \"id\": \"binance\",\n            \"instagram\": \"https://www.instagram.com/binance\",\n            \"linkShareable\": true,\n            \"linkedin\": \"https://www.linkedin.com/company/binance\",\n            \"name\": \"Binance\",\n            \"note\": \"\",\n            \"ownerUID\": \"a1b2c3d4-5678-90ab-cdef-1234567890ab\",\n            \"populatedTags\": [\n              {\n                \"chain\": \"ethereum\",\n                \"disablePage\": false,\n                \"excludeEntities\": false,\n                \"id\": \"proof-of-reserves\",\n                \"label\": \"Binance Proof of Reserves\",\n                \"rank\": 20,\n                \"tagParams\": \"Binance\"\n              }\n            ],\n            \"service\": true,\n            \"twitter\": \"https://twitter.com/binance\",\n            \"type\": \"cex\",\n            \"website\": \"https://binance.com\"\n          },\n          \"arkhamLabel\": {\n            \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n            \"chainType\": \"evm\",\n            \"name\": \"Cold Wallet\",\n            \"note\": \"\"\n          },\n          \"chain\": \"ethereum\",\n          \"contract\": false,\n          \"depositServiceID\": \"binance\",\n          \"isShielded\": true,\n          \"isUserAddress\": false,\n          \"ownerAddress\": {},\n          \"predictedEntity\": {\n            \"addresses\": {\n              \"abc123\": [\n                \"abc123\"\n              ]\n            },\n            \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n            \"customImageSlug\": \"binance\",\n            \"customized\": true,\n            \"id\": \"binance\",\n            \"instagram\": \"https://www.instagram.com/binance\",\n            \"linkShareable\": true,\n            \"linkedin\": \"https://www.linkedin.com/company/binance\",\n            \"name\": \"Binance\",\n            \"note\": \"\",\n            \"ownerUID\": \"a1b2c3d4-5678-90ab-cdef-1234567890ab\",\n            \"populatedTags\": [\n              {\n                \"chain\": \"ethereum\",\n                \"disablePage\": false,\n                \"excludeEntities\": false,\n                \"id\": \"proof-of-reserves\",\n                \"label\": \"Binance Proof of Reserves\",\n                \"rank\": 20,\n                \"tagParams\": \"Binance\"\n              }\n            ],\n            \"service\": true,\n            \"twitter\": \"https://twitter.com/binance\",\n            \"type\": \"cex\",\n            \"website\": \"https://binance.com\"\n          },\n          \"program\": true,\n          \"service\": true,\n          \"userEntity\": {\n            \"addresses\": {\n              \"abc123\": [\n                \"abc123\"\n              ]\n            },\n            \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n            \"customImageSlug\": \"binance\",\n            \"customized\": true,\n            \"id\": \"binance\",\n            \"instagram\": \"https://www.instagram.com/binance\",\n            \"linkShareable\": true,\n            \"linkedin\": \"https://www.linkedin.com/company/binance\",\n            \"name\": \"Binance\",\n            \"note\": \"\",\n            \"ownerUID\": \"a1b2c3d4-5678-90ab-cdef-1234567890ab\",\n            \"populatedTags\": [\n              {\n                \"chain\": \"ethereum\",\n                \"disablePage\": false,\n                \"excludeEntities\": false,\n                \"id\": \"proof-of-reserves\",\n                \"label\": \"Binance Proof of Reserves\",\n                \"rank\": 20,\n                \"tagParams\": \"Binance\"\n              }\n            ],\n            \"service\": true,\n            \"twitter\": \"https://twitter.com/binance\",\n            \"type\": \"cex\",\n            \"website\": \"https://binance.com\"\n          },\n          \"userLabel\": {\n            \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n            \"chainType\": \"evm\",\n            \"name\": \"Cold Wallet\",\n            \"note\": \"\"\n          }\n        },\n        \"fromIsContract\": false,\n        \"historicalUSD\": 685673.692,\n        \"id\": \"0xded143b3e5dd3c9f6987783d0f0f2af1cec746553113a015a23f1213038b3972\",\n        \"seq\": 454726700,\n        \"toAddress\": {\n          \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n          \"arkhamEntity\": {\n            \"addresses\": {\n              \"abc123\": [\n                \"abc123\"\n              ]\n            },\n            \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n            \"customImageSlug\": \"binance\",\n            \"customized\": true,\n            \"id\": \"binance\",\n            \"instagram\": \"https://www.instagram.com/binance\",\n            \"linkShareable\": true,\n            \"linkedin\": \"https://www.linkedin.com/company/binance\",\n            \"name\": \"Binance\",\n            \"note\": \"\",\n            \"ownerUID\": \"a1b2c3d4-5678-90ab-cdef-1234567890ab\",\n            \"populatedTags\": [\n              {\n                \"chain\": \"ethereum\",\n                \"disablePage\": false,\n                \"excludeEntities\": false,\n                \"id\": \"proof-of-reserves\",\n                \"label\": \"Binance Proof of Reserves\",\n                \"rank\": 20,\n                \"tagParams\": \"Binance\"\n              }\n            ],\n            \"service\": true,\n            \"twitter\": \"https://twitter.com/binance\",\n            \"type\": \"cex\",\n            \"website\": \"https://binance.com\"\n          },\n          \"arkhamLabel\": {\n            \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n            \"chainType\": \"evm\",\n            \"name\": \"Cold Wallet\",\n            \"note\": \"\"\n          },\n          \"chain\": \"ethereum\",\n          \"contract\": false,\n          \"depositServiceID\": \"binance\",\n          \"isShielded\": true,\n          \"isUserAddress\": false,\n          \"ownerAddress\": {},\n          \"predictedEntity\": {\n            \"addresses\": {\n              \"abc123\": [\n                \"abc123\"\n              ]\n            },\n            \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n            \"customImageSlug\": \"binance\",\n            \"customized\": true,\n            \"id\": \"binance\",\n            \"instagram\": \"https://www.instagram.com/binance\",\n            \"linkShareable\": true,\n            \"linkedin\": \"https://www.linkedin.com/company/binance\",\n            \"name\": \"Binance\",\n            \"note\": \"\",\n            \"ownerUID\": \"a1b2c3d4-5678-90ab-cdef-1234567890ab\",\n            \"populatedTags\": [\n              {\n                \"chain\": \"ethereum\",\n                \"disablePage\": false,\n                \"excludeEntities\": false,\n                \"id\": \"proof-of-reserves\",\n                \"label\": \"Binance Proof of Reserves\",\n                \"rank\": 20,\n                \"tagParams\": \"Binance\"\n              }\n            ],\n            \"service\": true,\n            \"twitter\": \"https://twitter.com/binance\",\n            \"type\": \"cex\",\n            \"website\": \"https://binance.com\"\n          },\n          \"program\": true,\n          \"service\": true,\n          \"userEntity\": {\n            \"addresses\": {\n              \"abc123\": [\n                \"abc123\"\n              ]\n            },\n            \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n            \"customImageSlug\": \"binance\",\n            \"customized\": true,\n            \"id\": \"binance\",\n            \"instagram\": \"https://www.instagram.com/binance\",\n            \"linkShareable\": true,\n            \"linkedin\": \"https://www.linkedin.com/company/binance\",\n            \"name\": \"Binance\",\n            \"note\": \"\",\n            \"ownerUID\": \"a1b2c3d4-5678-90ab-cdef-1234567890ab\",\n            \"populatedTags\": [\n              {\n                \"chain\": \"ethereum\",\n                \"disablePage\": false,\n                \"excludeEntities\": false,\n                \"id\": \"proof-of-reserves\",\n                \"label\": \"Binance Proof of Reserves\",\n                \"rank\": 20,\n                \"tagParams\": \"Binance\"\n              }\n            ],\n            \"service\": true,\n            \"twitter\": \"https://twitter.com/binance\",\n            \"type\": \"cex\",\n            \"website\": \"https://binance.com\"\n          },\n          \"userLabel\": {\n            \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n            \"chainType\": \"evm\",\n            \"name\": \"Cold Wallet\",\n            \"note\": \"\"\n          }\n        },\n        \"toIsContract\": false,\n        \"tokenAddress\": \"0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48\",\n        \"tokenDecimals\": 18,\n        \"tokenId\": \"ethereum\",\n        \"tokenName\": \"Ethereum\",\n        \"tokenSymbol\": \"ETH\",\n        \"transactionHash\": \"0xded143b3e5dd3c9f6987783d0f0f2af1cec746553113a015a23f121\",\n        \"type\": \"external\",\n        \"unitValue\": 259.6\n      }\n    ],\n    \"blockHash\": \"abc123\",\n    \"blockNumber\": 1,\n    \"blockTimestamp\": \"2024-01-01T00:00:00Z\",\n    \"bridges\": [\n      {\n        \"action\": \"abc123\",\n        \"destination\": {\n          \"address\": \"abc123\",\n          \"asset\": \"abc123\",\n          \"chain\": \"abc123\",\n          \"chainIconId\": \"abc123\",\n          \"chainIconUrl\": \"abc123\",\n          \"chainName\": \"abc123\",\n          \"historicalUSD\": 1.23,\n          \"rawAmount\": \"abc123\",\n          \"status\": \"abc123\",\n          \"symbol\": \"abc123\",\n          \"timestamp\": \"2024-01-01T00:00:00Z\",\n          \"tokenAddress\": \"abc123\",\n          \"tokenIconUrl\": \"abc123\",\n          \"tokenId\": \"abc123\",\n          \"txHash\": \"abc123\",\n          \"unitPriceUsd\": 1.23,\n          \"value\": 1.23\n        },\n        \"height\": 1,\n        \"id\": \"abc123\",\n        \"memo\": \"abc123\",\n        \"pools\": [\n          \"abc123\"\n        ],\n        \"protocol\": \"abc123\",\n        \"protocolEntityId\": \"abc123\",\n        \"protocolName\": \"abc123\",\n        \"source\": {\n          \"address\": \"abc123\",\n          \"asset\": \"abc123\",\n          \"chain\": \"abc123\",\n          \"chainIconId\": \"abc123\",\n          \"chainIconUrl\": \"abc123\",\n          \"chainName\": \"abc123\",\n          \"historicalUSD\": 1.23,\n          \"rawAmount\": \"abc123\",\n          \"status\": \"abc123\",\n          \"symbol\": \"abc123\",\n          \"timestamp\": \"2024-01-01T00:00:00Z\",\n          \"tokenAddress\": \"abc123\",\n          \"tokenIconUrl\": \"abc123\",\n          \"tokenId\": \"abc123\",\n          \"txHash\": \"abc123\",\n          \"unitPriceUsd\": 1.23,\n          \"value\": 1.23\n        },\n        \"status\": \"abc123\",\n        \"timestamp\": \"2024-01-01T00:00:00Z\",\n        \"transactionHash\": \"abc123\"\n      }\n    ],\n    \"chain\": \"ethereum\",\n    \"contractAddress\": \"abc123\",\n    \"dexTrades\": [\n      {\n        \"bought\": [\n          {\n            \"amount\": \"abc123\",\n            \"decimals\": 1,\n            \"instrumentId\": \"abc123\",\n            \"symbol\": \"abc123\",\n            \"tokenAddress\": \"abc123\",\n            \"tokenId\": \"abc123\",\n            \"usd\": \"abc123\"\n          }\n        ],\n        \"chain\": \"ethereum\",\n        \"recipient\": {\n          \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n          \"arkhamEntity\": {\n            \"addresses\": {\n              \"abc123\": [\n                \"abc123\"\n              ]\n            },\n            \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n            \"customImageSlug\": \"binance\",\n            \"customized\": true,\n            \"id\": \"binance\",\n            \"instagram\": \"https://www.instagram.com/binance\",\n            \"linkShareable\": true,\n            \"linkedin\": \"https://www.linkedin.com/company/binance\",\n            \"name\": \"Binance\",\n            \"note\": \"\",\n            \"ownerUID\": \"a1b2c3d4-5678-90ab-cdef-1234567890ab\",\n            \"populatedTags\": [\n              {\n                \"chain\": \"ethereum\",\n                \"disablePage\": false,\n                \"excludeEntities\": false,\n                \"id\": \"proof-of-reserves\",\n                \"label\": \"Binance Proof of Reserves\",\n                \"rank\": 20,\n                \"tagParams\": \"Binance\"\n              }\n            ],\n            \"service\": true,\n            \"twitter\": \"https://twitter.com/binance\",\n            \"type\": \"cex\",\n            \"website\": \"https://binance.com\"\n          },\n          \"arkhamLabel\": {\n            \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n            \"chainType\": \"evm\",\n            \"name\": \"Cold Wallet\",\n            \"note\": \"\"\n          },\n          \"chain\": \"ethereum\",\n          \"contract\": false,\n          \"depositServiceID\": \"binance\",\n          \"isShielded\": true,\n          \"isUserAddress\": false,\n          \"ownerAddress\": {},\n          \"predictedEntity\": {\n            \"addresses\": {\n              \"abc123\": [\n                \"abc123\"\n              ]\n            },\n            \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n            \"customImageSlug\": \"binance\",\n            \"customized\": true,\n            \"id\": \"binance\",\n            \"instagram\": \"https://www.instagram.com/binance\",\n            \"linkShareable\": true,\n            \"linkedin\": \"https://www.linkedin.com/company/binance\",\n            \"name\": \"Binance\",\n            \"note\": \"\",\n            \"ownerUID\": \"a1b2c3d4-5678-90ab-cdef-1234567890ab\",\n            \"populatedTags\": [\n              {\n                \"chain\": \"ethereum\",\n                \"disablePage\": false,\n                \"excludeEntities\": false,\n                \"id\": \"proof-of-reserves\",\n                \"label\": \"Binance Proof of Reserves\",\n                \"rank\": 20,\n                \"tagParams\": \"Binance\"\n              }\n            ],\n            \"service\": true,\n            \"twitter\": \"https://twitter.com/binance\",\n            \"type\": \"cex\",\n            \"website\": \"https://binance.com\"\n          },\n          \"program\": true,\n          \"service\": true,\n          \"userEntity\": {\n            \"addresses\": {\n              \"abc123\": [\n                \"abc123\"\n              ]\n            },\n            \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n            \"customImageSlug\": \"binance\",\n            \"customized\": true,\n            \"id\": \"binance\",\n            \"instagram\": \"https://www.instagram.com/binance\",\n            \"linkShareable\": true,\n            \"linkedin\": \"https://www.linkedin.com/company/binance\",\n            \"name\": \"Binance\",\n            \"note\": \"\",\n            \"ownerUID\": \"a1b2c3d4-5678-90ab-cdef-1234567890ab\",\n            \"populatedTags\": [\n              {\n                \"chain\": \"ethereum\",\n                \"disablePage\": false,\n                \"excludeEntities\": false,\n                \"id\": \"proof-of-reserves\",\n                \"label\": \"Binance Proof of Reserves\",\n                \"rank\": 20,\n                \"tagParams\": \"Binance\"\n              }\n            ],\n            \"service\": true,\n            \"twitter\": \"https://twitter.com/binance\",\n            \"type\": \"cex\",\n            \"website\": \"https://binance.com\"\n          },\n          \"userLabel\": {\n            \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n            \"chainType\": \"evm\",\n            \"name\": \"Cold Wallet\",\n            \"note\": \"\"\n          }\n        },\n        \"seller\": {\n          \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n          \"arkhamEntity\": {\n            \"addresses\": {\n              \"abc123\": [\n                \"abc123\"\n              ]\n            },\n            \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n            \"customImageSlug\": \"binance\",\n            \"customized\": true,\n            \"id\": \"binance\",\n            \"instagram\": \"https://www.instagram.com/binance\",\n            \"linkShareable\": true,\n            \"linkedin\": \"https://www.linkedin.com/company/binance\",\n            \"name\": \"Binance\",\n            \"note\": \"\",\n            \"ownerUID\": \"a1b2c3d4-5678-90ab-cdef-1234567890ab\",\n            \"populatedTags\": [\n              {\n                \"chain\": \"ethereum\",\n                \"disablePage\": false,\n                \"excludeEntities\": false,\n                \"id\": \"proof-of-reserves\",\n                \"label\": \"Binance Proof of Reserves\",\n                \"rank\": 20,\n                \"tagParams\": \"Binance\"\n              }\n            ],\n            \"service\": true,\n            \"twitter\": \"https://twitter.com/binance\",\n            \"type\": \"cex\",\n            \"website\": \"https://binance.com\"\n          },\n          \"arkhamLabel\": {\n            \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n            \"chainType\": \"evm\",\n            \"name\": \"Cold Wallet\",\n            \"note\": \"\"\n          },\n          \"chain\": \"ethereum\",\n          \"contract\": false,\n          \"depositServiceID\": \"binance\",\n          \"isShielded\": true,\n          \"isUserAddress\": false,\n          \"ownerAddress\": {},\n          \"predictedEntity\": {\n            \"addresses\": {\n              \"abc123\": [\n                \"abc123\"\n              ]\n            },\n            \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n            \"customImageSlug\": \"binance\",\n            \"customized\": true,\n            \"id\": \"binance\",\n            \"instagram\": \"https://www.instagram.com/binance\",\n            \"linkShareable\": true,\n            \"linkedin\": \"https://www.linkedin.com/company/binance\",\n            \"name\": \"Binance\",\n            \"note\": \"\",\n            \"ownerUID\": \"a1b2c3d4-5678-90ab-cdef-1234567890ab\",\n            \"populatedTags\": [\n              {\n                \"chain\": \"ethereum\",\n                \"disablePage\": false,\n                \"excludeEntities\": false,\n                \"id\": \"proof-of-reserves\",\n                \"label\": \"Binance Proof of Reserves\",\n                \"rank\": 20,\n                \"tagParams\": \"Binance\"\n              }\n            ],\n            \"service\": true,\n            \"twitter\": \"https://twitter.com/binance\",\n            \"type\": \"cex\",\n            \"website\": \"https://binance.com\"\n          },\n          \"program\": true,\n          \"service\": true,\n          \"userEntity\": {\n            \"addresses\": {\n              \"abc123\": [\n                \"abc123\"\n              ]\n            },\n            \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n            \"customImageSlug\": \"binance\",\n            \"customized\": true,\n            \"id\": \"binance\",\n            \"instagram\": \"https://www.instagram.com/binance\",\n            \"linkShareable\": true,\n            \"linkedin\": \"https://www.linkedin.com/company/binance\",\n            \"name\": \"Binance\",\n            \"note\": \"\",\n            \"ownerUID\": \"a1b2c3d4-5678-90ab-cdef-1234567890ab\",\n            \"populatedTags\": [\n              {\n                \"chain\": \"ethereum\",\n                \"disablePage\": false,\n                \"excludeEntities\": false,\n                \"id\": \"proof-of-reserves\",\n                \"label\": \"Binance Proof of Reserves\",\n                \"rank\": 20,\n                \"tagParams\": \"Binance\"\n              }\n            ],\n            \"service\": true,\n            \"twitter\": \"https://twitter.com/binance\",\n            \"type\": \"cex\",\n            \"website\": \"https://binance.com\"\n          },\n          \"userLabel\": {\n            \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n            \"chainType\": \"evm\",\n            \"name\": \"Cold Wallet\",\n            \"note\": \"\"\n          }\n        },\n        \"sold\": [\n          {\n            \"amount\": \"abc123\",\n            \"decimals\": 1,\n            \"instrumentId\": \"abc123\",\n            \"symbol\": \"abc123\",\n            \"tokenAddress\": \"abc123\",\n            \"tokenId\": \"abc123\",\n            \"usd\": \"abc123\"\n          }\n        ],\n        \"to\": {\n          \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n          \"arkhamEntity\": {\n            \"addresses\": {\n              \"abc123\": [\n                \"abc123\"\n              ]\n            },\n            \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n            \"customImageSlug\": \"binance\",\n            \"customized\": true,\n            \"id\": \"binance\",\n            \"instagram\": \"https://www.instagram.com/binance\",\n            \"linkShareable\": true,\n            \"linkedin\": \"https://www.linkedin.com/company/binance\",\n            \"name\": \"Binance\",\n            \"note\": \"\",\n            \"ownerUID\": \"a1b2c3d4-5678-90ab-cdef-1234567890ab\",\n            \"populatedTags\": [\n              {\n                \"chain\": \"ethereum\",\n                \"disablePage\": false,\n                \"excludeEntities\": false,\n                \"id\": \"proof-of-reserves\",\n                \"label\": \"Binance Proof of Reserves\",\n                \"rank\": 20,\n                \"tagParams\": \"Binance\"\n              }\n            ],\n            \"service\": true,\n            \"twitter\": \"https://twitter.com/binance\",\n            \"type\": \"cex\",\n            \"website\": \"https://binance.com\"\n          },\n          \"arkhamLabel\": {\n            \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n            \"chainType\": \"evm\",\n            \"name\": \"Cold Wallet\",\n            \"note\": \"\"\n          },\n          \"chain\": \"ethereum\",\n          \"contract\": false,\n          \"depositServiceID\": \"binance\",\n          \"isShielded\": true,\n          \"isUserAddress\": false,\n          \"ownerAddress\": {},\n          \"predictedEntity\": {\n            \"addresses\": {\n              \"abc123\": [\n                \"abc123\"\n              ]\n            },\n            \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n            \"customImageSlug\": \"binance\",\n            \"customized\": true,\n            \"id\": \"binance\",\n            \"instagram\": \"https://www.instagram.com/binance\",\n            \"linkShareable\": true,\n            \"linkedin\": \"https://www.linkedin.com/company/binance\",\n            \"name\": \"Binance\",\n            \"note\": \"\",\n            \"ownerUID\": \"a1b2c3d4-5678-90ab-cdef-1234567890ab\",\n            \"populatedTags\": [\n              {\n                \"chain\": \"ethereum\",\n                \"disablePage\": false,\n                \"excludeEntities\": false,\n                \"id\": \"proof-of-reserves\",\n                \"label\": \"Binance Proof of Reserves\",\n                \"rank\": 20,\n                \"tagParams\": \"Binance\"\n              }\n            ],\n            \"service\": true,\n            \"twitter\": \"https://twitter.com/binance\",\n            \"type\": \"cex\",\n            \"website\": \"https://binance.com\"\n          },\n          \"program\": true,\n          \"service\": true,\n          \"userEntity\": {\n            \"addresses\": {\n              \"abc123\": [\n                \"abc123\"\n              ]\n            },\n            \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n            \"customImageSlug\": \"binance\",\n            \"customized\": true,\n            \"id\": \"binance\",\n            \"instagram\": \"https://www.instagram.com/binance\",\n            \"linkShareable\": true,\n            \"linkedin\": \"https://www.linkedin.com/company/binance\",\n            \"name\": \"Binance\",\n            \"note\": \"\",\n            \"ownerUID\": \"a1b2c3d4-5678-90ab-cdef-1234567890ab\",\n            \"populatedTags\": [\n              {\n                \"chain\": \"ethereum\",\n                \"disablePage\": false,\n                \"excludeEntities\": false,\n                \"id\": \"proof-of-reserves\",\n                \"label\": \"Binance Proof of Reserves\",\n                \"rank\": 20,\n                \"tagParams\": \"Binance\"\n              }\n            ],\n            \"service\": true,\n            \"twitter\": \"https://twitter.com/binance\",\n            \"type\": \"cex\",\n            \"website\": \"https://binance.com\"\n          },\n          \"userLabel\": {\n            \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n            \"chainType\": \"evm\",\n            \"name\": \"Cold Wallet\",\n            \"note\": \"\"\n          }\n        },\n        \"trader\": {\n          \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n          \"arkhamEntity\": {\n            \"addresses\": {\n              \"abc123\": [\n                \"abc123\"\n              ]\n            },\n            \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n            \"customImageSlug\": \"binance\",\n            \"customized\": true,\n            \"id\": \"binance\",\n            \"instagram\": \"https://www.instagram.com/binance\",\n            \"linkShareable\": true,\n            \"linkedin\": \"https://www.linkedin.com/company/binance\",\n            \"name\": \"Binance\",\n            \"note\": \"\",\n            \"ownerUID\": \"a1b2c3d4-5678-90ab-cdef-1234567890ab\",\n            \"populatedTags\": [\n              {\n                \"chain\": \"ethereum\",\n                \"disablePage\": false,\n                \"excludeEntities\": false,\n                \"id\": \"proof-of-reserves\",\n                \"label\": \"Binance Proof of Reserves\",\n                \"rank\": 20,\n                \"tagParams\": \"Binance\"\n              }\n            ],\n            \"service\": true,\n            \"twitter\": \"https://twitter.com/binance\",\n            \"type\": \"cex\",\n            \"website\": \"https://binance.com\"\n          },\n          \"arkhamLabel\": {\n            \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n            \"chainType\": \"evm\",\n            \"name\": \"Cold Wallet\",\n            \"note\": \"\"\n          },\n          \"chain\": \"ethereum\",\n          \"contract\": false,\n          \"depositServiceID\": \"binance\",\n          \"isShielded\": true,\n          \"isUserAddress\": false,\n          \"ownerAddress\": {},\n          \"predictedEntity\": {\n            \"addresses\": {\n              \"abc123\": [\n                \"abc123\"\n              ]\n            },\n            \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n            \"customImageSlug\": \"binance\",\n            \"customized\": true,\n            \"id\": \"binance\",\n            \"instagram\": \"https://www.instagram.com/binance\",\n            \"linkShareable\": true,\n            \"linkedin\": \"https://www.linkedin.com/company/binance\",\n            \"name\": \"Binance\",\n            \"note\": \"\",\n            \"ownerUID\": \"a1b2c3d4-5678-90ab-cdef-1234567890ab\",\n            \"populatedTags\": [\n              {\n                \"chain\": \"ethereum\",\n                \"disablePage\": false,\n                \"excludeEntities\": false,\n                \"id\": \"proof-of-reserves\",\n                \"label\": \"Binance Proof of Reserves\",\n                \"rank\": 20,\n                \"tagParams\": \"Binance\"\n              }\n            ],\n            \"service\": true,\n            \"twitter\": \"https://twitter.com/binance\",\n            \"type\": \"cex\",\n            \"website\": \"https://binance.com\"\n          },\n          \"program\": true,\n          \"service\": true,\n          \"userEntity\": {\n            \"addresses\": {\n              \"abc123\": [\n                \"abc123\"\n              ]\n            },\n            \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n            \"customImageSlug\": \"binance\",\n            \"customized\": true,\n            \"id\": \"binance\",\n            \"instagram\": \"https://www.instagram.com/binance\",\n            \"linkShareable\": true,\n            \"linkedin\": \"https://www.linkedin.com/company/binance\",\n            \"name\": \"Binance\",\n            \"note\": \"\",\n            \"ownerUID\": \"a1b2c3d4-5678-90ab-cdef-1234567890ab\",\n            \"populatedTags\": [\n              {\n                \"chain\": \"ethereum\",\n                \"disablePage\": false,\n                \"excludeEntities\": false,\n                \"id\": \"proof-of-reserves\",\n                \"label\": \"Binance Proof of Reserves\",\n                \"rank\": 20,\n                \"tagParams\": \"Binance\"\n              }\n            ],\n            \"service\": true,\n            \"twitter\": \"https://twitter.com/binance\",\n            \"type\": \"cex\",\n            \"website\": \"https://binance.com\"\n          },\n          \"userLabel\": {\n            \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n            \"chainType\": \"evm\",\n            \"name\": \"Cold Wallet\",\n            \"note\": \"\"\n          }\n        },\n        \"usd\": \"abc123\"\n      }\n    ],\n    \"enrichedFromAddress\": {\n      \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n      \"arkhamEntity\": {\n        \"addresses\": {\n          \"abc123\": [\n            \"abc123\"\n          ]\n        },\n        \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n        \"customImageSlug\": \"binance\",\n        \"customized\": true,\n        \"id\": \"binance\",\n        \"instagram\": \"https://www.instagram.com/binance\",\n        \"linkShareable\": true,\n        \"linkedin\": \"https://www.linkedin.com/company/binance\",\n        \"name\": \"Binance\",\n        \"note\": \"\",\n        \"ownerUID\": \"a1b2c3d4-5678-90ab-cdef-1234567890ab\",\n        \"populatedTags\": [\n          {\n            \"chain\": \"ethereum\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"proof-of-reserves\",\n            \"label\": \"Binance Proof of Reserves\",\n            \"rank\": 20,\n            \"tagParams\": \"Binance\"\n          }\n        ],\n        \"service\": true,\n        \"twitter\": \"https://twitter.com/binance\",\n        \"type\": \"cex\",\n        \"website\": \"https://binance.com\"\n      },\n      \"arkhamLabel\": {\n        \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n        \"chainType\": \"evm\",\n        \"name\": \"Cold Wallet\",\n        \"note\": \"\"\n      },\n      \"chain\": \"ethereum\",\n      \"contract\": false,\n      \"depositServiceID\": \"binance\",\n      \"isShielded\": true,\n      \"isUserAddress\": false,\n      \"ownerAddress\": {},\n      \"predictedEntity\": {\n        \"addresses\": {\n          \"abc123\": [\n            \"abc123\"\n          ]\n        },\n        \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n        \"customImageSlug\": \"binance\",\n        \"customized\": true,\n        \"id\": \"binance\",\n        \"instagram\": \"https://www.instagram.com/binance\",\n        \"linkShareable\": true,\n        \"linkedin\": \"https://www.linkedin.com/company/binance\",\n        \"name\": \"Binance\",\n        \"note\": \"\",\n        \"ownerUID\": \"a1b2c3d4-5678-90ab-cdef-1234567890ab\",\n        \"populatedTags\": [\n          {\n            \"chain\": \"ethereum\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"proof-of-reserves\",\n            \"label\": \"Binance Proof of Reserves\",\n            \"rank\": 20,\n            \"tagParams\": \"Binance\"\n          }\n        ],\n        \"service\": true,\n        \"twitter\": \"https://twitter.com/binance\",\n        \"type\": \"cex\",\n        \"website\": \"https://binance.com\"\n      },\n      \"program\": true,\n      \"service\": true,\n      \"userEntity\": {\n        \"addresses\": {\n          \"abc123\": [\n            \"abc123\"\n          ]\n        },\n        \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n        \"customImageSlug\": \"binance\",\n        \"customized\": true,\n        \"id\": \"binance\",\n        \"instagram\": \"https://www.instagram.com/binance\",\n        \"linkShareable\": true,\n        \"linkedin\": \"https://www.linkedin.com/company/binance\",\n        \"name\": \"Binance\",\n        \"note\": \"\",\n        \"ownerUID\": \"a1b2c3d4-5678-90ab-cdef-1234567890ab\",\n        \"populatedTags\": [\n          {\n            \"chain\": \"ethereum\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"proof-of-reserves\",\n            \"label\": \"Binance Proof of Reserves\",\n            \"rank\": 20,\n            \"tagParams\": \"Binance\"\n          }\n        ],\n        \"service\": true,\n        \"twitter\": \"https://twitter.com/binance\",\n        \"type\": \"cex\",\n        \"website\": \"https://binance.com\"\n      },\n      \"userLabel\": {\n        \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n        \"chainType\": \"evm\",\n        \"name\": \"Cold Wallet\",\n        \"note\": \"\"\n      }\n    },\n    \"enrichedToAddress\": {\n      \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n      \"arkhamEntity\": {\n        \"addresses\": {\n          \"abc123\": [\n            \"abc123\"\n          ]\n        },\n        \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n        \"customImageSlug\": \"binance\",\n        \"customized\": true,\n        \"id\": \"binance\",\n        \"instagram\": \"https://www.instagram.com/binance\",\n        \"linkShareable\": true,\n        \"linkedin\": \"https://www.linkedin.com/company/binance\",\n        \"name\": \"Binance\",\n        \"note\": \"\",\n        \"ownerUID\": \"a1b2c3d4-5678-90ab-cdef-1234567890ab\",\n        \"populatedTags\": [\n          {\n            \"chain\": \"ethereum\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"proof-of-reserves\",\n            \"label\": \"Binance Proof of Reserves\",\n            \"rank\": 20,\n            \"tagParams\": \"Binance\"\n          }\n        ],\n        \"service\": true,\n        \"twitter\": \"https://twitter.com/binance\",\n        \"type\": \"cex\",\n        \"website\": \"https://binance.com\"\n      },\n      \"arkhamLabel\": {\n        \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n        \"chainType\": \"evm\",\n        \"name\": \"Cold Wallet\",\n        \"note\": \"\"\n      },\n      \"chain\": \"ethereum\",\n      \"contract\": false,\n      \"depositServiceID\": \"binance\",\n      \"isShielded\": true,\n      \"isUserAddress\": false,\n      \"ownerAddress\": {},\n      \"predictedEntity\": {\n        \"addresses\": {\n          \"abc123\": [\n            \"abc123\"\n          ]\n        },\n        \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n        \"customImageSlug\": \"binance\",\n        \"customized\": true,\n        \"id\": \"binance\",\n        \"instagram\": \"https://www.instagram.com/binance\",\n        \"linkShareable\": true,\n        \"linkedin\": \"https://www.linkedin.com/company/binance\",\n        \"name\": \"Binance\",\n        \"note\": \"\",\n        \"ownerUID\": \"a1b2c3d4-5678-90ab-cdef-1234567890ab\",\n        \"populatedTags\": [\n          {\n            \"chain\": \"ethereum\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"proof-of-reserves\",\n            \"label\": \"Binance Proof of Reserves\",\n            \"rank\": 20,\n            \"tagParams\": \"Binance\"\n          }\n        ],\n        \"service\": true,\n        \"twitter\": \"https://twitter.com/binance\",\n        \"type\": \"cex\",\n        \"website\": \"https://binance.com\"\n      },\n      \"program\": true,\n      \"service\": true,\n      \"userEntity\": {\n        \"addresses\": {\n          \"abc123\": [\n            \"abc123\"\n          ]\n        },\n        \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n        \"customImageSlug\": \"binance\",\n        \"customized\": true,\n        \"id\": \"binance\",\n        \"instagram\": \"https://www.instagram.com/binance\",\n        \"linkShareable\": true,\n        \"linkedin\": \"https://www.linkedin.com/company/binance\",\n        \"name\": \"Binance\",\n        \"note\": \"\",\n        \"ownerUID\": \"a1b2c3d4-5678-90ab-cdef-1234567890ab\",\n        \"populatedTags\": [\n          {\n            \"chain\": \"ethereum\",\n            \"disablePage\": false,\n            \"excludeEntities\": false,\n            \"id\": \"proof-of-reserves\",\n            \"label\": \"Binance Proof of Reserves\",\n            \"rank\": 20,\n            \"tagParams\": \"Binance\"\n          }\n        ],\n        \"service\": true,\n        \"twitter\": \"https://twitter.com/binance\",\n        \"type\": \"cex\",\n        \"website\": \"https://binance.com\"\n      },\n      \"userLabel\": {\n        \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n        \"chainType\": \"evm\",\n        \"name\": \"Cold Wallet\",\n        \"note\": \"\"\n      }\n    },\n    \"ethPrice\": 1.23,\n    \"fee\": 1.23,\n    \"firstSeen\": \"2024-01-01T00:00:00Z\",\n    \"fromAddress\": \"abc123\",\n    \"gasLimit\": 1,\n    \"gasPrice\": 1.23,\n    \"gasUsageByTransaction\": 1,\n    \"hash\": \"abc123\",\n    \"isMempoolTx\": true,\n    \"receiptStatus\": 1,\n    \"status\": \"abc123\",\n    \"toAddress\": \"abc123\",\n    \"tokenID\": \"abc123\",\n    \"tokenSymbol\": \"abc123\",\n    \"unitValue\": 1.23,\n    \"usdValue\": 1.23\n  }\n}"}],"_postman_id":"34c3067c-0ff9-4e80-9505-4af0acadf7cc"}],"id":"87fd9067-fa2a-4c2d-a8fb-ae549d83051f","_postman_id":"87fd9067-fa2a-4c2d-a8fb-ae549d83051f","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}}},{"name":"user","item":[{"name":"List your alerts","id":"1b6f34c7-e070-4926-a1e2-9dd218c39d27","request":{"method":"GET","header":[],"url":"https://api.arkm.com/user/alerts","description":"<p>Returns every alert owned by the authenticated caller as a list of <code>AlertParam</code> objects. Results are unpaginated and in no particular order.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["user","alerts"],"host":["https://api.arkm.com"],"query":[],"variable":[]}},"response":[{"id":"22ec3292-2287-4037-94e9-032308a01749","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.arkm.com/user/alerts","description":"Returns every alert owned by the authenticated caller as a list of `AlertParam` objects. Results are unpaginated and in no particular order."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"activelyFeatured\": true,\n    \"alertMethodId\": 1,\n    \"base\": [\n      \"abc123\"\n    ],\n    \"chains\": [\n      \"ethereum\"\n    ],\n    \"createdAt\": \"2024-01-01T00:00:00Z\",\n    \"description\": \"abc123\",\n    \"enabled\": true,\n    \"from\": [\n      \"abc123\"\n    ],\n    \"id\": 1,\n    \"name\": \"abc123\",\n    \"ownerUID\": \"abc123\",\n    \"shareable\": true,\n    \"to\": [\n      \"abc123\"\n    ],\n    \"tokens\": [\n      \"abc123\"\n    ],\n    \"usdGte\": 1.23,\n    \"usdLte\": 1.23,\n    \"valueGte\": 1.23,\n    \"valueLte\": 1.23\n  }\n]"}],"_postman_id":"1b6f34c7-e070-4926-a1e2-9dd218c39d27"},{"name":"Create an alert","id":"8ca286d1-8935-43f4-9e78-676be39087d8","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"alertMethodId\": 1,\n  \"base\": [\n    \"abc123\"\n  ],\n  \"chains\": [\n    \"ethereum\"\n  ],\n  \"description\": \"abc123\",\n  \"enabled\": true,\n  \"from\": [\n    \"abc123\"\n  ],\n  \"name\": \"abc123\",\n  \"to\": [\n    \"abc123\"\n  ],\n  \"tokens\": [\n    \"abc123\"\n  ],\n  \"usdGte\": 1.23,\n  \"usdLte\": 1.23,\n  \"valueGte\": 1.23,\n  \"valueLte\": 1.23\n}","options":{"raw":{"language":"json"}}},"url":"https://api.arkm.com/user/alerts","description":"<p>Creates a new alert that notifies the caller when on-chain transfers match the supplied filter.</p>\n<p><strong>Request body</strong> (<code>AlertRequest</code>):</p>\n<ul>\n<li><strong>name</strong>: Human-readable alert name.</li>\n<li><strong>enabled</strong>: Whether the alert delivers notifications. Disabled alerts are stored but do not notify.</li>\n<li><strong>base / from / to</strong>: Comma-separated address, entity, or deposit selectors in the same syntax as <code>GET /transfers</code>. Pass <code>[\"all\"]</code> on <code>base</code> to match every transfer (Pro only).</li>\n<li><strong>tokens</strong>: Token IDs or chain:address pairs to filter on.</li>\n<li><strong>valueGte / valueLte</strong>: Raw token amount bounds (on-chain units).</li>\n<li><strong>usdGte / usdLte</strong>: Historical USD value bounds.</li>\n<li><strong>chains</strong>: Optional subset of supported chains to scope the alert to.</li>\n<li><strong>alertMethodId</strong>: Required. ID of the notification channel that delivers this alert (see <code>GET /user/alertmethods</code>). Must be one of your own alert methods.</li>\n<li><strong>description</strong>: Optional free-form note.</li>\n</ul>\n<p><strong>Validation:</strong> <code>alertMethodId</code> is required and must reference one of your own alert methods; omitting it or pointing it at a method you do not own returns <code>400</code>. Non-Pro users must supply at least one of a non-<code>\"all\"</code> <code>base</code>, a <code>from</code>, a <code>to</code>, a <code>tokens</code> filter, or a <code>usdGte &gt;= 10000000</code>. Pro users may create fully open alerts. Users are hard-capped at 1000 alerts. Each of <code>valueGte</code>, <code>valueLte</code>, <code>usdGte</code> and <code>usdLte</code> must be greater than -1e27 and less than 1e27; a bound outside that range returns <code>400</code>.</p>\n<p><strong>Response:</strong> The numeric ID of the new alert.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["user","alerts"],"host":["https://api.arkm.com"],"query":[],"variable":[]}},"response":[{"id":"fa6830dd-04e2-4785-890a-a280925aaf41","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"alertMethodId\": 1,\n  \"base\": [\n    \"abc123\"\n  ],\n  \"chains\": [\n    \"ethereum\"\n  ],\n  \"description\": \"abc123\",\n  \"enabled\": true,\n  \"from\": [\n    \"abc123\"\n  ],\n  \"name\": \"abc123\",\n  \"to\": [\n    \"abc123\"\n  ],\n  \"tokens\": [\n    \"abc123\"\n  ],\n  \"usdGte\": 1.23,\n  \"usdLte\": 1.23,\n  \"valueGte\": 1.23,\n  \"valueLte\": 1.23\n}","options":{"raw":{"language":"json"}}},"url":"https://api.arkm.com/user/alerts","description":"Creates a new alert that notifies the caller when on-chain transfers match the supplied filter.\n\n**Request body** (`AlertRequest`):\n- **name**: Human-readable alert name.\n- **enabled**: Whether the alert delivers notifications. Disabled alerts are stored but do not notify.\n- **base / from / to**: Comma-separated address, entity, or deposit selectors in the same syntax as `GET /transfers`. Pass `[\"all\"]` on `base` to match every transfer (Pro only).\n- **tokens**: Token IDs or chain:address pairs to filter on.\n- **valueGte / valueLte**: Raw token amount bounds (on-chain units).\n- **usdGte / usdLte**: Historical USD value bounds.\n- **chains**: Optional subset of supported chains to scope the alert to.\n- **alertMethodId**: Required. ID of the notification channel that delivers this alert (see `GET /user/alertmethods`). Must be one of your own alert methods.\n- **description**: Optional free-form note.\n\n**Validation:** `alertMethodId` is required and must reference one of your own alert methods; omitting it or pointing it at a method you do not own returns `400`. Non-Pro users must supply at least one of a non-`\"all\"` `base`, a `from`, a `to`, a `tokens` filter, or a `usdGte >= 10000000`. Pro users may create fully open alerts. Users are hard-capped at 1000 alerts. Each of `valueGte`, `valueLte`, `usdGte` and `usdLte` must be greater than -1e27 and less than 1e27; a bound outside that range returns `400`.\n\n**Response:** The numeric ID of the new alert."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"1"}],"_postman_id":"8ca286d1-8935-43f4-9e78-676be39087d8"},{"name":"Get a single alert","id":"70a8b6c5-a375-430f-9ba6-8164f4cb0f00","request":{"method":"GET","header":[],"url":"https://api.arkm.com/user/alerts/:id","description":"<p>Returns the <code>AlertParam</code> for one alert owned by the caller.</p>\n<p><strong>Path parameter:</strong></p>\n<ul>\n<li><strong>id</strong>: The numeric ID of the alert.</li>\n</ul>\n<p><strong>Response:</strong> <code>404 Not Found</code> if the alert does not exist or is owned by a different user.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["user","alerts",":id"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"ec5ecde6-e629-4c87-993e-ab98c2eb2a02","description":{"content":"<p>Required.</p>\n","type":"text/plain"},"type":"any","value":"1","key":"id"}]}},"response":[{"id":"e774383f-1c20-4470-b6db-26b7ae669651","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/user/alerts/:id","host":["https://api.arkm.com"],"path":["user","alerts",":id"],"variable":[{"key":"id","value":"1","description":"Required."}]},"description":"Returns the `AlertParam` for one alert owned by the caller.\n\n**Path parameter:**\n- **id**: The numeric ID of the alert.\n\n**Response:** `404 Not Found` if the alert does not exist or is owned by a different user."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"activelyFeatured\": true,\n  \"alertMethodId\": 1,\n  \"base\": [\n    \"abc123\"\n  ],\n  \"chains\": [\n    \"ethereum\"\n  ],\n  \"createdAt\": \"2024-01-01T00:00:00Z\",\n  \"description\": \"abc123\",\n  \"enabled\": true,\n  \"from\": [\n    \"abc123\"\n  ],\n  \"id\": 1,\n  \"name\": \"abc123\",\n  \"ownerUID\": \"abc123\",\n  \"shareable\": true,\n  \"to\": [\n    \"abc123\"\n  ],\n  \"tokens\": [\n    \"abc123\"\n  ],\n  \"usdGte\": 1.23,\n  \"usdLte\": 1.23,\n  \"valueGte\": 1.23,\n  \"valueLte\": 1.23\n}"}],"_postman_id":"70a8b6c5-a375-430f-9ba6-8164f4cb0f00"},{"name":"Update an alert","id":"939af38f-c640-438c-b4d1-359bcfc6e9ea","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"alertMethodId\": 1,\n  \"base\": [\n    \"abc123\"\n  ],\n  \"chains\": [\n    \"ethereum\"\n  ],\n  \"description\": \"abc123\",\n  \"enabled\": true,\n  \"from\": [\n    \"abc123\"\n  ],\n  \"name\": \"abc123\",\n  \"to\": [\n    \"abc123\"\n  ],\n  \"tokens\": [\n    \"abc123\"\n  ],\n  \"usdGte\": 1.23,\n  \"usdLte\": 1.23,\n  \"valueGte\": 1.23,\n  \"valueLte\": 1.23\n}","options":{"raw":{"language":"json"}}},"url":"https://api.arkm.com/user/alerts/:id","description":"<p>Replaces the configuration of an existing alert. The caller must own the alert — 404 is returned otherwise.</p>\n<p><strong>Path parameter:</strong></p>\n<ul>\n<li><strong>id</strong>: The numeric ID of the alert to update.</li>\n</ul>\n<p><strong>Request body:</strong> An <code>AlertRequest</code> with the desired new configuration — same shape as <code>POST /user/alerts</code>.</p>\n<p><strong>Validation:</strong> Same Pro / non-Pro rules as <code>POST /user/alerts</code> — non-Pro users must still supply a restrictive filter or <code>usdGte &gt;= 10000000</code>.</p>\n<p><strong>Response:</strong> <code>204 No Content</code> on success.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["user","alerts",":id"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"9b76075e-4457-4968-b116-5904577c8c3c","description":{"content":"<p>Required.</p>\n","type":"text/plain"},"type":"any","value":"1","key":"id"}]}},"response":[],"_postman_id":"939af38f-c640-438c-b4d1-359bcfc6e9ea"},{"name":"Delete an alert","id":"473555c9-b2cd-4e5b-9a47-750723aeacb6","request":{"method":"DELETE","header":[],"url":"https://api.arkm.com/user/alerts/:id","description":"<p>Permanently deletes an alert owned by the caller.</p>\n<p><strong>Path parameter:</strong></p>\n<ul>\n<li><strong>id</strong>: The numeric ID of the alert to delete.</li>\n</ul>\n<p><strong>Response:</strong> <code>204 No Content</code> on success.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["user","alerts",":id"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"2408efbb-9e62-4250-a3eb-6c2976b00be5","description":{"content":"<p>Required.</p>\n","type":"text/plain"},"type":"any","value":"1","key":"id"}]}},"response":[],"_postman_id":"473555c9-b2cd-4e5b-9a47-750723aeacb6"},{"name":"List all private entities","id":"6913fac5-f652-44bf-b710-2ad57ea6b0e9","request":{"method":"GET","header":[],"url":"https://api.arkm.com/user/entities","description":"<p>Retrieves all private entities for the authenticated user. Returns both user-created private entities and customized Arkham entities.</p>\n<p>Use the includeAddresses parameter to control whether address lists are included in the response (default: true).</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["user","entities"],"host":["https://api.arkm.com"],"query":[{"disabled":true,"description":{"content":"<p>Optional. Whether to include address lists in the response. Accepts 'true' or 'false'. Defaults to 'true'.</p>\n","type":"text/plain"},"key":"includeAddresses","value":"abc123"}],"variable":[]}},"response":[{"id":"53984ca9-44ce-4d47-82c7-c456ac45def9","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/user/entities","host":["https://api.arkm.com"],"path":["user","entities"],"query":[{"key":"includeAddresses","value":"abc123","description":"Optional. Whether to include address lists in the response. Accepts 'true' or 'false'. Defaults to 'true'.","disabled":true}]},"description":"Retrieves all private entities for the authenticated user. Returns both user-created private entities and customized Arkham entities.\n\nUse the includeAddresses parameter to control whether address lists are included in the response (default: true)."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"addresses\": {\n      \"abc123\": [\n        \"abc123\"\n      ]\n    },\n    \"createdAt\": \"2024-01-01T00:00:00Z\",\n    \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n    \"customImageSlug\": \"binance\",\n    \"customized\": true,\n    \"id\": \"binance\",\n    \"instagram\": \"https://www.instagram.com/binance\",\n    \"linkShareable\": true,\n    \"linkedin\": \"https://www.linkedin.com/company/binance\",\n    \"name\": \"Binance\",\n    \"note\": \"\",\n    \"ownerUID\": \"a1b2c3d4-5678-90ab-cdef-1234567890ab\",\n    \"populatedTags\": [\n      {\n        \"chain\": \"ethereum\",\n        \"disablePage\": false,\n        \"excludeEntities\": false,\n        \"id\": \"proof-of-reserves\",\n        \"label\": \"Binance Proof of Reserves\",\n        \"rank\": 20,\n        \"tagParams\": \"Binance\"\n      }\n    ],\n    \"service\": true,\n    \"twitter\": \"https://twitter.com/binance\",\n    \"type\": \"cex\",\n    \"updatedAt\": \"2024-01-01T00:00:00Z\",\n    \"website\": \"https://binance.com\"\n  }\n]"}],"_postman_id":"6913fac5-f652-44bf-b710-2ad57ea6b0e9"},{"name":"Create a custom entity","id":"8a164c24-e0e4-48b6-b627-06ba6487aea1","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"addresses\": {\n    \"evm\": [\n      \"0x28C6c06298d514Db089934071355E5743bf21d60\"\n    ]\n  },\n  \"name\": \"Treasury Wallets\",\n  \"note\": \"Company-controlled treasury addresses\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.arkm.com/user/entities","description":"<p>Creates a custom entity for the authenticated user. Custom entities organize a set of blockchain addresses under a private name and note.</p>\n<p>Addresses must be valid for their chain type. A request can contain at most 5000 addresses. The entity name is limited to 256 characters and the note to 1024 characters.</p>\n<p>An address and chain type can belong to only one of the user's custom or customized entities. Assigning an address here moves it from any other entity in the user's account.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["user","entities"],"host":["https://api.arkm.com"],"query":[],"variable":[]}},"response":[{"id":"c22cf232-fc75-484f-8c0b-4ca1f42ae39e","name":"201 Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"addresses\": {\n    \"evm\": [\n      \"0x28C6c06298d514Db089934071355E5743bf21d60\"\n    ]\n  },\n  \"name\": \"Treasury Wallets\",\n  \"note\": \"Company-controlled treasury addresses\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.arkm.com/user/entities","description":"Creates a custom entity for the authenticated user. Custom entities organize a set of blockchain addresses under a private name and note.\n\nAddresses must be valid for their chain type. A request can contain at most 5000 addresses. The entity name is limited to 256 characters and the note to 1024 characters.\n\nAn address and chain type can belong to only one of the user's custom or customized entities. Assigning an address here moves it from any other entity in the user's account."},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"addresses\": {\n    \"evm\": [\n      \"0x28C6c06298d514Db089934071355E5743bf21d60\"\n    ]\n  },\n  \"createdAt\": \"2024-01-01T00:00:00Z\",\n  \"id\": \"0197f7f7-7d30-7a40-85f3-9e97a4be9308\",\n  \"name\": \"Treasury Wallets\",\n  \"note\": \"Company-controlled treasury addresses\",\n  \"updatedAt\": \"2024-01-01T00:00:00Z\"\n}"}],"_postman_id":"8a164c24-e0e4-48b6-b627-06ba6487aea1"},{"name":"Add addresses to a custom entity","id":"e0a54ed4-3602-4c3d-94b5-3af354b5b568","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"addresses\": {\n    \"evm\": [\n      \"0x28C6c06298d514Db089934071355E5743bf21d60\"\n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":"https://api.arkm.com/user/entities/only_add/:id","description":"<p>Adds the supplied addresses to a user-created or customized Arkham entity without removing its existing addresses.</p>\n<p>The entity ID in the URL path is authoritative. The request body contains only the addresses to add and can contain at most 5000 addresses.</p>\n<p>An address and chain type can belong to only one of the user's custom or customized entities. Assigning an address here moves it from any other entity in the user's account.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["user","entities","only_add",":id"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"902f5959-f7c7-4d39-af7c-85b3ad6de8c8","description":{"content":"<p>Required. The entity ID to update. Can be a user-created entity ID or an Arkham entity ID.</p>\n","type":"text/plain"},"type":"any","value":"0197f7f7-7d30-7a40-85f3-9e97a4be9308","key":"id"}]}},"response":[{"id":"0818361b-1cdc-478a-8322-a56d0e128a17","name":"200 OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"addresses\": {\n    \"evm\": [\n      \"0x28C6c06298d514Db089934071355E5743bf21d60\"\n    ]\n  }\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.arkm.com/user/entities/only_add/:id","host":["https://api.arkm.com"],"path":["user","entities","only_add",":id"],"variable":[{"key":"id","value":"0197f7f7-7d30-7a40-85f3-9e97a4be9308","description":"Required. The entity ID to update. Can be a user-created entity ID or an Arkham entity ID."}]},"description":"Adds the supplied addresses to a user-created or customized Arkham entity without removing its existing addresses.\n\nThe entity ID in the URL path is authoritative. The request body contains only the addresses to add and can contain at most 5000 addresses.\n\nAn address and chain type can belong to only one of the user's custom or customized entities. Assigning an address here moves it from any other entity in the user's account."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"addresses\": {\n    \"abc123\": [\n      \"abc123\"\n    ]\n  },\n  \"createdAt\": \"2024-01-01T00:00:00Z\",\n  \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n  \"customImageSlug\": \"binance\",\n  \"customized\": true,\n  \"id\": \"binance\",\n  \"instagram\": \"https://www.instagram.com/binance\",\n  \"linkShareable\": true,\n  \"linkedin\": \"https://www.linkedin.com/company/binance\",\n  \"name\": \"Binance\",\n  \"note\": \"\",\n  \"ownerUID\": \"a1b2c3d4-5678-90ab-cdef-1234567890ab\",\n  \"populatedTags\": [\n    {\n      \"chain\": \"ethereum\",\n      \"disablePage\": false,\n      \"excludeEntities\": false,\n      \"id\": \"proof-of-reserves\",\n      \"label\": \"Binance Proof of Reserves\",\n      \"rank\": 20,\n      \"tagParams\": \"Binance\"\n    }\n  ],\n  \"service\": true,\n  \"twitter\": \"https://twitter.com/binance\",\n  \"type\": \"cex\",\n  \"updatedAt\": \"2024-01-01T00:00:00Z\",\n  \"website\": \"https://binance.com\"\n}"}],"_postman_id":"e0a54ed4-3602-4c3d-94b5-3af354b5b568"},{"name":"Get a private entity by ID","id":"db38f78d-8731-41b6-b898-3c3b193500ef","request":{"method":"GET","header":[],"url":"https://api.arkm.com/user/entities/:id","description":"<p>Retrieves a specific private entity by its ID. Returns the entity details including name, note, and associated addresses.</p>\n<p>Supports both user-created private entities and customized Arkham entities.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["user","entities",":id"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"ba185cc9-57f2-49f4-9629-942b59fd9359","description":{"content":"<p>Required. The entity ID to retrieve. Can be a user-created entity ID or an Arkham entity ID.</p>\n","type":"text/plain"},"type":"any","value":"binance","key":"id"}]}},"response":[{"id":"231b4cb0-da2c-4575-a113-d9fad49f90b2","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/user/entities/:id","host":["https://api.arkm.com"],"path":["user","entities",":id"],"variable":[{"key":"id","value":"binance","description":"Required. The entity ID to retrieve. Can be a user-created entity ID or an Arkham entity ID."}]},"description":"Retrieves a specific private entity by its ID. Returns the entity details including name, note, and associated addresses.\n\nSupports both user-created private entities and customized Arkham entities."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"addresses\": {\n    \"abc123\": [\n      \"abc123\"\n    ]\n  },\n  \"createdAt\": \"2024-01-01T00:00:00Z\",\n  \"crunchbase\": \"https://www.crunchbase.com/organization/binance\",\n  \"customImageSlug\": \"binance\",\n  \"customized\": true,\n  \"id\": \"binance\",\n  \"instagram\": \"https://www.instagram.com/binance\",\n  \"linkShareable\": true,\n  \"linkedin\": \"https://www.linkedin.com/company/binance\",\n  \"name\": \"Binance\",\n  \"note\": \"\",\n  \"ownerUID\": \"a1b2c3d4-5678-90ab-cdef-1234567890ab\",\n  \"populatedTags\": [\n    {\n      \"chain\": \"ethereum\",\n      \"disablePage\": false,\n      \"excludeEntities\": false,\n      \"id\": \"proof-of-reserves\",\n      \"label\": \"Binance Proof of Reserves\",\n      \"rank\": 20,\n      \"tagParams\": \"Binance\"\n    }\n  ],\n  \"service\": true,\n  \"twitter\": \"https://twitter.com/binance\",\n  \"type\": \"cex\",\n  \"updatedAt\": \"2024-01-01T00:00:00Z\",\n  \"website\": \"https://binance.com\"\n}"}],"_postman_id":"db38f78d-8731-41b6-b898-3c3b193500ef"},{"name":"Replace a custom entity","id":"55f09f3e-8beb-4f9a-93b3-9fd4d69d3c6b","request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"addresses\": {\n    \"evm\": [\n      \"0x28C6c06298d514Db089934071355E5743bf21d60\"\n    ]\n  },\n  \"name\": \"Treasury Wallets\",\n  \"note\": \"Company-controlled treasury addresses\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.arkm.com/user/entities/:id","description":"<p>Replaces the mutable fields of a custom entity. The ID in the URL path identifies the entity; the request body does not contain an ID.</p>\n<p>For a user-created entity, name is required and the name, note, and complete address set are replaced. For a customized Arkham entity, only the user's custom address set is replaced; name and note may be omitted and are ignored. Omitting addresses or sending an empty object removes all addresses. A request can contain at most 5000 addresses.</p>\n<p>An address and chain type can belong to only one of the user's custom or customized entities. Assigning an address here moves it from any other entity in the user's account.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["user","entities",":id"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"1cbae2dc-256a-4687-8efc-a829376c4d60","description":{"content":"<p>Required. The entity ID to replace. Can be a user-created entity ID or a customized Arkham entity ID.</p>\n","type":"text/plain"},"type":"any","value":"0197f7f7-7d30-7a40-85f3-9e97a4be9308","key":"id"}]}},"response":[{"id":"3e14d7e7-4b0c-47c0-b392-7b1fc1f2abf0","name":"200 OK","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"addresses\": {\n    \"evm\": [\n      \"0x28C6c06298d514Db089934071355E5743bf21d60\"\n    ]\n  },\n  \"name\": \"Treasury Wallets\",\n  \"note\": \"Company-controlled treasury addresses\"\n}","options":{"raw":{"language":"json"}}},"url":{"raw":"https://api.arkm.com/user/entities/:id","host":["https://api.arkm.com"],"path":["user","entities",":id"],"variable":[{"key":"id","value":"0197f7f7-7d30-7a40-85f3-9e97a4be9308","description":"Required. The entity ID to replace. Can be a user-created entity ID or a customized Arkham entity ID."}]},"description":"Replaces the mutable fields of a custom entity. The ID in the URL path identifies the entity; the request body does not contain an ID.\n\nFor a user-created entity, name is required and the name, note, and complete address set are replaced. For a customized Arkham entity, only the user's custom address set is replaced; name and note may be omitted and are ignored. Omitting addresses or sending an empty object removes all addresses. A request can contain at most 5000 addresses.\n\nAn address and chain type can belong to only one of the user's custom or customized entities. Assigning an address here moves it from any other entity in the user's account."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"addresses\": {\n    \"evm\": [\n      \"0x28C6c06298d514Db089934071355E5743bf21d60\"\n    ]\n  },\n  \"createdAt\": \"2024-01-01T00:00:00Z\",\n  \"id\": \"0197f7f7-7d30-7a40-85f3-9e97a4be9308\",\n  \"name\": \"Treasury Wallets\",\n  \"note\": \"Company-controlled treasury addresses\",\n  \"updatedAt\": \"2024-01-01T00:00:00Z\"\n}"}],"_postman_id":"55f09f3e-8beb-4f9a-93b3-9fd4d69d3c6b"},{"name":"Delete a custom entity","id":"aa6edbb6-1cc3-4f00-800c-1fe1ca8e1717","request":{"method":"DELETE","header":[],"url":"https://api.arkm.com/user/entities/:id","description":"<p>Deletes a custom entity by its ID. For user-created entities, the entire entity is removed. For customized Arkham entities, only the user's custom address associations are removed.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["user","entities",":id"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"df3e73a9-de74-43c8-9cc2-13cb03989336","description":{"content":"<p>Required. The entity ID to delete. Can be a user-created entity ID or an Arkham entity ID.</p>\n","type":"text/plain"},"type":"any","value":"0197f7f7-7d30-7a40-85f3-9e97a4be9308","key":"id"}]}},"response":[],"_postman_id":"aa6edbb6-1cc3-4f00-800c-1fe1ca8e1717"},{"name":"Get user labels","id":"e7296aea-7321-4ab5-bb37-aff6469bd238","request":{"method":"GET","header":[],"url":"https://api.arkm.com/user/labels","description":"<p>Retrieves a list of labels for the authenticated user.</p>\n<p>The response contains at most one label per address and chain type. See POST /user/labels for what happens when an address that already has a label is written again.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["user","labels"],"host":["https://api.arkm.com"],"query":[],"variable":[]}},"response":[{"id":"0a2aabe2-c7bc-44b0-ae42-bb305b75a9c0","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.arkm.com/user/labels","description":"Retrieves a list of labels for the authenticated user.\n\nThe response contains at most one label per address and chain type. See POST /user/labels for what happens when an address that already has a label is written again."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n    \"chainType\": \"evm\",\n    \"name\": \"Cold Wallet\",\n    \"note\": \"\"\n  }\n]"}],"_postman_id":"e7296aea-7321-4ab5-bb37-aff6469bd238"},{"name":"Create labels","id":"be221210-8dba-4175-9316-2970fd1f670a","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n    \"chainType\": \"evm\",\n    \"name\": \"Cold Wallet\",\n    \"note\": \"\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://api.arkm.com/user/labels","description":"<p>Creates one or more labels for the authenticated user.</p>\n<p>Each user has at most one label per address and chain type. Posting a label for an address that already has one replaces it: both name and note are overwritten with the values in the request, so omitting note clears any note already stored.</p>\n<p>Addresses are normalized before storage — EVM addresses are checksummed, for example — so the same address written in different letter cases resolves to a single label rather than two.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["user","labels"],"host":["https://api.arkm.com"],"query":[],"variable":[]}},"response":[{"id":"3b698d90-91fd-4b44-8a66-efbe723d3e1d","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"[\n  {\n    \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n    \"chainType\": \"evm\",\n    \"name\": \"Cold Wallet\",\n    \"note\": \"\"\n  }\n]","options":{"raw":{"language":"json"}}},"url":"https://api.arkm.com/user/labels","description":"Creates one or more labels for the authenticated user.\n\nEach user has at most one label per address and chain type. Posting a label for an address that already has one replaces it: both name and note are overwritten with the values in the request, so omitting note clears any note already stored.\n\nAddresses are normalized before storage — EVM addresses are checksummed, for example — so the same address written in different letter cases resolves to a single label rather than two."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"address\": \"0x28C6c06298d514Db089934071355E5743bf21d60\",\n    \"chainType\": \"evm\",\n    \"name\": \"Cold Wallet\",\n    \"note\": \"\"\n  }\n]"}],"_postman_id":"be221210-8dba-4175-9316-2970fd1f670a"},{"name":"Delete a label","id":"9335148d-82db-44cd-8221-fcc3e9606473","request":{"method":"DELETE","header":[],"url":"https://api.arkm.com/user/labels/:chainType/:address","description":"<p>Deletes the authenticated user's label for one address and chain type.</p>\n<p>Deleting a label that does not exist succeeds without making any changes.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["user","labels",":chainType",":address"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"b1380bb0-e709-4200-acf6-e5688483fc9b","description":{"content":"<p>Required. The label's chain type.</p>\n","type":"text/plain"},"type":"any","value":"evm","key":"chainType"},{"id":"dd3381d4-8b05-4c7e-a8f9-0a91f8d1b11f","description":{"content":"<p>Required. The label's blockchain address.</p>\n","type":"text/plain"},"type":"any","value":"0x28C6c06298d514Db089934071355E5743bf21d60","key":"address"}]}},"response":[],"_postman_id":"9335148d-82db-44cd-8221-fcc3e9606473"}],"id":"d4182589-6695-4cb4-898d-7acaab279a06","_postman_id":"d4182589-6695-4cb4-898d-7acaab279a06","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}}},{"name":"volume","item":[{"name":"Get exchange and service volume for an address","id":"21be647b-52e6-4596-9862-00623b0bc6f0","request":{"method":"GET","header":[],"url":"https://api.arkm.com/volume/address/:address?chains=ethereum,bsc,polygon","description":"<p>Returns a daily time series of aggregated transfer flows to and from centralized exchanges and similar services for this address, broken down by chain and by exchange. DEX swaps, NFT trades, DeFi positions and ordinary wallet-to-wallet transfers are excluded.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["volume","address",":address"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,bsc'). If omitted, returns data across all supported chains.</p>\n","type":"text/plain"},"key":"chains","value":"ethereum,bsc,polygon"}],"variable":[{"id":"2ba3ae0e-92c1-45a9-b329-f7e39c8fbdb9","description":{"content":"<p>Required. The blockchain address to query. Several addresses can be queried at once by passing them as a single comma-separated value; their volumes are combined.</p>\n","type":"text/plain"},"type":"any","value":"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045","key":"address"}]}},"response":[{"id":"ce8ad3a4-7df5-4169-996f-670ff8bfe5b2","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/volume/address/:address?chains=ethereum,bsc,polygon","host":["https://api.arkm.com"],"path":["volume","address",":address"],"query":[{"key":"chains","value":"ethereum,bsc,polygon","description":"Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,bsc'). If omitted, returns data across all supported chains."}],"variable":[{"key":"address","value":"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045","description":"Required. The blockchain address to query. Several addresses can be queried at once by passing them as a single comma-separated value; their volumes are combined."}]},"description":"Returns a daily time series of aggregated transfer flows to and from centralized exchanges and similar services for this address, broken down by chain and by exchange. DEX swaps, NFT trades, DeFi positions and ordinary wallet-to-wallet transfers are excluded."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"bsc\": [\n    {\n      \"time\": \"2026-05-03T00:00:00Z\",\n      \"volumes\": [\n        {\n          \"depositedUSD\": 0,\n          \"exchangeID\": \"kraken\",\n          \"exchangeName\": \"Kraken\",\n          \"withdrawnUSD\": 166.5162856206\n        }\n      ]\n    },\n    {\n      \"time\": \"2026-05-04T00:00:00Z\",\n      \"volumes\": []\n    }\n  ],\n  \"ethereum\": [\n    {\n      \"time\": \"2023-06-05T00:00:00Z\",\n      \"volumes\": [\n        {\n          \"depositedUSD\": 0,\n          \"exchangeID\": \"coinbase\",\n          \"exchangeName\": \"Coinbase\",\n          \"withdrawnUSD\": 1.89123\n        },\n        {\n          \"depositedUSD\": 756662.2107,\n          \"exchangeID\": \"kraken\",\n          \"exchangeName\": \"Kraken\",\n          \"withdrawnUSD\": 0\n        }\n      ]\n    },\n    {\n      \"time\": \"2023-06-07T00:00:00Z\",\n      \"volumes\": []\n    }\n  ]\n}"}],"_postman_id":"21be647b-52e6-4596-9862-00623b0bc6f0"},{"name":"Get exchange and service volume for an entity","id":"4459471c-cb41-47a0-a3e2-940af0465337","request":{"method":"GET","header":[],"url":"https://api.arkm.com/volume/entity/:entity?chains=ethereum,bsc,polygon","description":"<p>Returns a daily time series of aggregated transfer flows to and from centralized exchanges and similar services for this entity, broken down by chain and by exchange. DEX swaps, NFT trades, DeFi positions and ordinary wallet-to-wallet transfers are excluded.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["volume","entity",":entity"],"host":["https://api.arkm.com"],"query":[{"description":{"content":"<p>Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,bsc'). If omitted, returns data across all supported chains.</p>\n","type":"text/plain"},"key":"chains","value":"ethereum,bsc,polygon"}],"variable":[{"id":"f352b645-152d-4024-bb9c-161b91e5a29a","description":{"content":"<p>Required. The entity ID to query, such as 'binance'. A user entity can also be queried by passing its UUID.</p>\n","type":"text/plain"},"type":"any","value":"binance","key":"entity"}]}},"response":[{"id":"42532ebc-3a6f-4bfc-b207-970504b4ef22","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/volume/entity/:entity?chains=ethereum,bsc,polygon","host":["https://api.arkm.com"],"path":["volume","entity",":entity"],"query":[{"key":"chains","value":"ethereum,bsc,polygon","description":"Optional. Chains to filter by, as a single comma-separated value (e.g. 'ethereum,bsc'). If omitted, returns data across all supported chains."}],"variable":[{"key":"entity","value":"binance","description":"Required. The entity ID to query, such as 'binance'. A user entity can also be queried by passing its UUID."}]},"description":"Returns a daily time series of aggregated transfer flows to and from centralized exchanges and similar services for this entity, broken down by chain and by exchange. DEX swaps, NFT trades, DeFi positions and ordinary wallet-to-wallet transfers are excluded."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"bsc\": [\n    {\n      \"time\": \"2024-04-18T00:00:00Z\",\n      \"volumes\": [\n        {\n          \"depositedUSD\": 728575475.3976624,\n          \"exchangeID\": \"binance\",\n          \"exchangeName\": \"Binance\",\n          \"withdrawnUSD\": 778269696.6567583\n        },\n        {\n          \"depositedUSD\": 0,\n          \"exchangeID\": \"bybit\",\n          \"exchangeName\": \"Bybit\",\n          \"withdrawnUSD\": 31.980703999999996\n        },\n        {\n          \"depositedUSD\": 0,\n          \"exchangeID\": \"indodax\",\n          \"exchangeName\": \"Indodax\",\n          \"withdrawnUSD\": 12.241861103817799\n        }\n      ]\n    }\n  ],\n  \"ethereum\": [\n    {\n      \"time\": \"2025-09-29T00:00:00Z\",\n      \"volumes\": [\n        {\n          \"depositedUSD\": 40460779.2335978,\n          \"exchangeID\": \"binance\",\n          \"exchangeName\": \"Binance\",\n          \"withdrawnUSD\": 2992635991.373074\n        },\n        {\n          \"depositedUSD\": 0,\n          \"exchangeID\": \"revolut\",\n          \"exchangeName\": \"Revolut\",\n          \"withdrawnUSD\": 29.98833\n        }\n      ]\n    },\n    {\n      \"time\": \"2025-09-30T00:00:00Z\",\n      \"volumes\": [\n        {\n          \"depositedUSD\": 242177380.8937347,\n          \"exchangeID\": \"binance\",\n          \"exchangeName\": \"Binance\",\n          \"withdrawnUSD\": 799442514.7861655\n        }\n      ]\n    }\n  ]\n}"}],"_postman_id":"4459471c-cb41-47a0-a3e2-940af0465337"}],"id":"a139d780-3c37-47fc-ad9d-dc887f9de07b","_postman_id":"a139d780-3c37-47fc-ad9d-dc887f9de07b","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}}},{"name":"ws","item":[{"name":"Get active WebSocket connections (deprecated — use v2)","id":"9444dfec-8839-45ad-80d8-a5f6f51435d7","request":{"method":"GET","header":[],"url":"https://api.arkm.com/ws/active_connections","description":"<p><strong>Deprecated:</strong> Use the v2 WebSocket stream endpoints instead (see GET /ws/v2/streams).</p>\n<p>Returns the number of active WebSocket connections for the authenticated user.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["ws","active_connections"],"host":["https://api.arkm.com"],"query":[],"variable":[]}},"response":[{"id":"e478aec3-6778-42c7-a797-8e0a84ceb98e","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.arkm.com/ws/active_connections","description":"**Deprecated:** Use the v2 WebSocket stream endpoints instead (see GET /ws/v2/streams).\n\nReturns the number of active WebSocket connections for the authenticated user."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"activeConnections\": 1\n}"}],"_postman_id":"9444dfec-8839-45ad-80d8-a5f6f51435d7"},{"name":"Get WebSocket pricing info (deprecated — use v2)","id":"dfe4a603-7d6d-444e-8a20-de64f74fd2c9","request":{"method":"GET","header":[],"url":"https://api.arkm.com/ws/session-info","description":"<p><strong>Deprecated:</strong> v1 session pricing. Use the v2 WebSocket stream endpoints instead (see GET /ws/v2/streams) — v2 has no per-session fee.</p>\n<p>Returns the current pricing information for WebSocket sessions, including the credit cost per session creation and per transfer received.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["ws","session-info"],"host":["https://api.arkm.com"],"query":[],"variable":[]}},"response":[{"id":"082758b5-dc76-4caf-9495-7c295cc099f1","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.arkm.com/ws/session-info","description":"**Deprecated:** v1 session pricing. Use the v2 WebSocket stream endpoints instead (see GET /ws/v2/streams) — v2 has no per-session fee.\n\nReturns the current pricing information for WebSocket sessions, including the credit cost per session creation and per transfer received."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"creditPerSession\": 500,\n  \"creditPerTransfer\": 2,\n  \"nextRenewalDate\": \"2026-08-14T00:00:00Z\"\n}"}],"_postman_id":"dfe4a603-7d6d-444e-8a20-de64f74fd2c9"},{"name":"List WebSocket sessions (deprecated — use v2)","id":"a834e341-c2ab-425e-9185-b468dd4bc5ab","request":{"method":"GET","header":[],"url":"https://api.arkm.com/ws/sessions","description":"<p><strong>Deprecated:</strong> Use the v2 WebSocket stream endpoints instead (see GET /ws/v2/streams).</p>\n<p>Returns all WebSocket sessions for the authenticated user, including usage statistics and connection status.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["ws","sessions"],"host":["https://api.arkm.com"],"query":[],"variable":[]}},"response":[{"id":"85faccf2-b46b-44b8-ab24-25d54395a015","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.arkm.com/ws/sessions","description":"**Deprecated:** Use the v2 WebSocket stream endpoints instead (see GET /ws/v2/streams).\n\nReturns all WebSocket sessions for the authenticated user, including usage statistics and connection status."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"createdAt\": \"2026-07-14T09:12:43Z\",\n    \"isActive\": true,\n    \"isConnected\": true,\n    \"sessionId\": \"ws_Ab3xK9pQ_1782149114960780310\",\n    \"transfersUsed\": 1\n  }\n]"}],"_postman_id":"a834e341-c2ab-425e-9185-b468dd4bc5ab"},{"name":"Create WebSocket session (deprecated — use v2)","id":"4880f769-4a40-49bb-a99a-f8fd4937b05e","request":{"method":"POST","header":[],"url":"https://api.arkm.com/ws/sessions","description":"<p><strong>Deprecated:</strong> Use the v2 WebSocket stream endpoints instead. See GET /ws/v2/streams for details. V2 offers lower cost (no session creation fee) and better performance.</p>\n<p>Creates a new WebSocket session for real-time transfer streaming.</p>\n<p>You must create a session before connecting to the WebSocket stream. The returned sessionId should be passed as a query parameter when connecting: wss://api.arkm.com/ws/transfers?session_id=</p>\n<p><strong>Billing:</strong> Session creation costs API credits. Check GET /ws/session-info for current pricing.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["ws","sessions"],"host":["https://api.arkm.com"],"query":[],"variable":[]}},"response":[{"id":"4778e562-f0c5-465f-9309-107472cfd4f9","name":"200 OK","originalRequest":{"method":"POST","header":[],"url":"https://api.arkm.com/ws/sessions","description":"**Deprecated:** Use the v2 WebSocket stream endpoints instead. See GET /ws/v2/streams for details. V2 offers lower cost (no session creation fee) and better performance.\n\nCreates a new WebSocket session for real-time transfer streaming.\n\nYou must create a session before connecting to the WebSocket stream. The returned sessionId should be passed as a query parameter when connecting: wss://api.arkm.com/ws/transfers?session_id=<sessionId>\n\n**Billing:** Session creation costs API credits. Check GET /ws/session-info for current pricing."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"createdAt\": \"2026-07-14T09:12:43Z\",\n  \"isActive\": true,\n  \"sessionId\": \"ws_Ab3xK9pQ_1782149114960780310\",\n  \"transfersUsed\": 1\n}"}],"_postman_id":"4880f769-4a40-49bb-a99a-f8fd4937b05e"},{"name":"Get WebSocket session status (deprecated — use v2)","id":"b513133b-1db1-4dca-86d6-c1752f49cd66","request":{"method":"GET","header":[],"url":"https://api.arkm.com/ws/sessions/:id","description":"<p><strong>Deprecated:</strong> Use the v2 WebSocket stream endpoints instead (see GET /ws/v2/streams).</p>\n<p>Returns the status and usage details for a specific WebSocket session, including transfer count and connection status.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["ws","sessions",":id"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"ad1018d9-5668-43de-8b0e-ad1ba11bc767","description":{"content":"<p>Required. The session ID to retrieve</p>\n","type":"text/plain"},"type":"any","value":"ws_Ab3xK9pQ_1782149114960780310","key":"id"}]}},"response":[{"id":"0b7517b2-2a5d-4469-a889-37856abf58b5","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.arkm.com/ws/sessions/:id","host":["https://api.arkm.com"],"path":["ws","sessions",":id"],"variable":[{"key":"id","value":"ws_Ab3xK9pQ_1782149114960780310","description":"Required. The session ID to retrieve"}]},"description":"**Deprecated:** Use the v2 WebSocket stream endpoints instead (see GET /ws/v2/streams).\n\nReturns the status and usage details for a specific WebSocket session, including transfer count and connection status."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"createdAt\": \"2026-07-14T09:12:43Z\",\n  \"isActive\": true,\n  \"isConnected\": true,\n  \"sessionId\": \"ws_Ab3xK9pQ_1782149114960780310\",\n  \"transfersUsed\": 1\n}"}],"_postman_id":"b513133b-1db1-4dca-86d6-c1752f49cd66"},{"name":"Delete WebSocket session (deprecated — use v2)","id":"0dccde86-fd96-4d79-acdd-ca8c571a145d","request":{"method":"DELETE","header":[],"url":"https://api.arkm.com/ws/sessions/:id","description":"<p><strong>Deprecated:</strong> Use the v2 WebSocket stream endpoints instead (see GET /ws/v2/streams).</p>\n<p>Deletes a WebSocket session. Any active connection using this session will be disconnected.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["ws","sessions",":id"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"07f10c15-586e-4d3d-979b-276d2e228423","description":{"content":"<p>Required. The session ID to delete</p>\n","type":"text/plain"},"type":"any","value":"ws_Ab3xK9pQ_1782149114960780310","key":"id"}]}},"response":[{"id":"22566bcf-06d1-4816-afff-018d7096e8ec","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.arkm.com/ws/sessions/:id","host":["https://api.arkm.com"],"path":["ws","sessions",":id"],"variable":[{"key":"id","value":"ws_Ab3xK9pQ_1782149114960780310","description":"Required. The session ID to delete"}]},"description":"**Deprecated:** Use the v2 WebSocket stream endpoints instead (see GET /ws/v2/streams).\n\nDeletes a WebSocket session. Any active connection using this session will be disconnected."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"session deleted successfully\"\n}"}],"_postman_id":"0dccde86-fd96-4d79-acdd-ca8c571a145d"}],"id":"e98a0a15-3932-477a-af33-e8cc9be9fb9c","_postman_id":"e98a0a15-3932-477a-af33-e8cc9be9fb9c","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}}},{"name":"ws/v2","item":[{"name":"List WebSocket v2 streams","id":"9c5df238-bd61-43dd-beeb-75f83bfb4b37","request":{"method":"GET","header":[],"url":"https://api.arkm.com/ws/v2/streams","description":"<p>Returns all WebSocket v2 streams for the authenticated user.</p>\n<p><strong>How v2 works (3 steps):</strong></p>\n<ol>\n<li><strong>Create</strong> a stream with your transfer filter via POST /ws/v2/streams — the filter uses the same fields as GET /transfers, sent as a JSON request body</li>\n<li><strong>Connect</strong> via WebSocket: wss://api.arkm.com/ws/v2/transfers?stream_id= with your API-Key header</li>\n<li><strong>Receive</strong> transfers automatically — no subscribe/unsubscribe messages needed</li>\n</ol>\n<p><strong>Key differences from v1:</strong> In v2, each stream has exactly one filter set at creation time via a JSON request body on POST /ws/v2/streams. There is no need to send subscribe/unsubscribe messages over the WebSocket — transfers are delivered automatically as soon as you connect. The filter fields are the same as GET /transfers (base, from, to, chains, tokens, usdGte, etc.).</p>\n<p><strong>Reconnection:</strong> Streams expire after 10 minutes of inactivity. Reconnecting within 10 minutes reactivates the stream and delivers any transfers that occurred while disconnected.</p>\n<p><strong>Limits:</strong> Maximum 10 active streams per user (contact sales for higher limits).</p>\n<p><strong>Billing:</strong> 2 credits per transfer delivered. Stream creation, listing, and deletion are free.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["ws","v2","streams"],"host":["https://api.arkm.com"],"query":[],"variable":[]}},"response":[{"id":"33fb9dc8-679d-45dc-9a59-72f4cf95ecc4","name":"200 OK","originalRequest":{"method":"GET","header":[],"url":"https://api.arkm.com/ws/v2/streams","description":"Returns all WebSocket v2 streams for the authenticated user.\n\n**How v2 works (3 steps):**\n1. **Create** a stream with your transfer filter via POST /ws/v2/streams — the filter uses the same fields as GET /transfers, sent as a JSON request body\n2. **Connect** via WebSocket: wss://api.arkm.com/ws/v2/transfers?stream_id=<streamId> with your API-Key header\n3. **Receive** transfers automatically — no subscribe/unsubscribe messages needed\n\n**Key differences from v1:** In v2, each stream has exactly one filter set at creation time via a JSON request body on POST /ws/v2/streams. There is no need to send subscribe/unsubscribe messages over the WebSocket — transfers are delivered automatically as soon as you connect. The filter fields are the same as GET /transfers (base, from, to, chains, tokens, usdGte, etc.).\n\n**Reconnection:** Streams expire after 10 minutes of inactivity. Reconnecting within 10 minutes reactivates the stream and delivers any transfers that occurred while disconnected.\n\n**Limits:** Maximum 10 active streams per user (contact sales for higher limits).\n\n**Billing:** 2 credits per transfer delivered. Stream creation, listing, and deletion are free."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n  {\n    \"createdAt\": \"2026-07-14T09:12:43Z\",\n    \"id\": 173943,\n    \"isConnected\": true,\n    \"lastActive\": \"2026-07-15T10:16:35Z\",\n    \"streamId\": \"e561dd5b-a24d-4669-bbba-9e5cf37d5125\",\n    \"transfersUsed\": 1\n  }\n]"}],"_postman_id":"9c5df238-bd61-43dd-beeb-75f83bfb4b37"},{"name":"Create a WebSocket v2 stream","id":"a56a38fa-e23e-4bad-8883-e15e6fb41431","request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"base\": [\n    \"binance\",\n    \"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045\"\n  ],\n  \"chains\": [\n    \"ethereum\",\n    \"bsc\",\n    \"polygon\"\n  ],\n  \"counterparties\": [\n    \"binance\",\n    \"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045\"\n  ],\n  \"flow\": \"in\",\n  \"from\": [\n    \"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045\",\n    \"type:cex\",\n    \"deposit:binance\"\n  ],\n  \"to\": [\n    \"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045\",\n    \"deposit:binance\"\n  ],\n  \"tokens\": [\n    \"ethereum\",\n    \"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48\"\n  ],\n  \"usdGte\": \"250000\",\n  \"usdLte\": \"1000000\",\n  \"valueGte\": \"100\",\n  \"valueLte\": \"10000\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.arkm.com/ws/v2/streams","description":"<p>Creates a new WebSocket v2 stream with the given transfer filter, sent as a JSON request body.</p>\n<p>The filter is set at creation time and cannot be changed. To use a different filter, delete this stream and create a new one.</p>\n<p><strong>Filter requirements:</strong> Must include at least one of: base, from, to, tokens, or usdGte &gt;= 250,000.</p>\n<p><strong>Filter parameters:</strong></p>\n<ul>\n<li><strong>base</strong> — Entity name or wallet address to monitor. Shows transfers where this appears as sender or receiver. E.g. \"binance\" or \"0x123abc\".</li>\n<li><strong>chains</strong> — List of blockchains to filter by. E.g. [\"ethereum\", \"bsc\"]. Omit to include all chains.</li>\n<li><strong>flow</strong> — Transfer direction relative to the base. Values: \"in\" (incoming), \"out\" (outgoing), \"self\" (self-transfers), \"all\" (default).</li>\n<li><strong>from</strong> — List of addresses, entities, or deposit services for the sender side. Supports special syntax: \"type:cex\" for all CEX addresses, \"deposit:binance\" for Binance deposit addresses.</li>\n<li><strong>to</strong> — List of addresses, entities, or deposit services for the receiver side. Same syntax as from.</li>\n<li><strong>tokens</strong> — List of token IDs or contract addresses. E.g. [\"ethereum\", \"usd-coin\", \"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48\"]. Token ticker symbols like \"USDC\" are not accepted — use the token's ID or its contract address.</li>\n<li><strong>counterparties</strong> — List of addresses or entities to treat strictly as counterparties. When set with base, only delivers transfers that flow directly between base and counterparty (base→counterparty or counterparty→base).</li>\n<li><strong>usdGte</strong> / <strong>usdLte</strong> — Minimum/maximum USD value of the transfer. usdGte can satisfy the filter requirement on its own if &gt;= 250,000.</li>\n<li><strong>valueGte</strong> / <strong>valueLte</strong> — Minimum/maximum raw token amount (not USD).</li>\n</ul>\n<p>All address/entity parameters (base, from, to, counterparties) accept both raw wallet addresses and Arkham entity names. You do not need to use labeled entities — any wallet address works.</p>\n<p><strong>Billing:</strong> Free. You are only charged when transfers are delivered (2 credits per transfer).</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["ws","v2","streams"],"host":["https://api.arkm.com"],"query":[],"variable":[]}},"response":[{"id":"6de0a723-6617-4958-acd6-727695044512","name":"200 OK","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"base\": [\n    \"binance\",\n    \"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045\"\n  ],\n  \"chains\": [\n    \"ethereum\",\n    \"bsc\",\n    \"polygon\"\n  ],\n  \"counterparties\": [\n    \"binance\",\n    \"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045\"\n  ],\n  \"flow\": \"in\",\n  \"from\": [\n    \"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045\",\n    \"type:cex\",\n    \"deposit:binance\"\n  ],\n  \"to\": [\n    \"0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045\",\n    \"deposit:binance\"\n  ],\n  \"tokens\": [\n    \"ethereum\",\n    \"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48\"\n  ],\n  \"usdGte\": \"250000\",\n  \"usdLte\": \"1000000\",\n  \"valueGte\": \"100\",\n  \"valueLte\": \"10000\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.arkm.com/ws/v2/streams","description":"Creates a new WebSocket v2 stream with the given transfer filter, sent as a JSON request body.\n\nThe filter is set at creation time and cannot be changed. To use a different filter, delete this stream and create a new one.\n\n**Filter requirements:** Must include at least one of: base, from, to, tokens, or usdGte >= 250,000.\n\n**Filter parameters:**\n- **base** — Entity name or wallet address to monitor. Shows transfers where this appears as sender or receiver. E.g. \"binance\" or \"0x123abc\".\n- **chains** — List of blockchains to filter by. E.g. [\"ethereum\", \"bsc\"]. Omit to include all chains.\n- **flow** — Transfer direction relative to the base. Values: \"in\" (incoming), \"out\" (outgoing), \"self\" (self-transfers), \"all\" (default).\n- **from** — List of addresses, entities, or deposit services for the sender side. Supports special syntax: \"type:cex\" for all CEX addresses, \"deposit:binance\" for Binance deposit addresses.\n- **to** — List of addresses, entities, or deposit services for the receiver side. Same syntax as from.\n- **tokens** — List of token IDs or contract addresses. E.g. [\"ethereum\", \"usd-coin\", \"0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48\"]. Token ticker symbols like \"USDC\" are not accepted — use the token's ID or its contract address.\n- **counterparties** — List of addresses or entities to treat strictly as counterparties. When set with base, only delivers transfers that flow directly between base and counterparty (base→counterparty or counterparty→base).\n- **usdGte** / **usdLte** — Minimum/maximum USD value of the transfer. usdGte can satisfy the filter requirement on its own if >= 250,000.\n- **valueGte** / **valueLte** — Minimum/maximum raw token amount (not USD).\n\nAll address/entity parameters (base, from, to, counterparties) accept both raw wallet addresses and Arkham entity names. You do not need to use labeled entities — any wallet address works.\n\n**Billing:** Free. You are only charged when transfers are delivered (2 credits per transfer)."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"createdAt\": \"2026-07-14T09:12:43Z\",\n  \"id\": 173943,\n  \"streamId\": \"e561dd5b-a24d-4669-bbba-9e5cf37d5125\"\n}"}],"_postman_id":"a56a38fa-e23e-4bad-8883-e15e6fb41431"},{"name":"Delete a WebSocket v2 stream","id":"8643b328-d27a-4fa3-8f98-901021ddbef8","request":{"method":"DELETE","header":[],"url":"https://api.arkm.com/ws/v2/streams/:id","description":"<p>Deletes a WebSocket v2 stream. Any active connection using this stream will be disconnected.</p>\n<p><strong>Billing:</strong> Free.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}},"urlObject":{"path":["ws","v2","streams",":id"],"host":["https://api.arkm.com"],"query":[],"variable":[{"id":"5093c3c5-e12e-4a1c-ab15-6e566a370f72","description":{"content":"<p>Required. The streamId of the stream to delete, as returned by POST /ws/v2/streams. The numeric id from that response is not accepted here.</p>\n","type":"text/plain"},"type":"any","value":"e561dd5b-a24d-4669-bbba-9e5cf37d5125","key":"id"}]}},"response":[{"id":"732a4765-a174-4994-a001-a084f2de5802","name":"200 OK","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://api.arkm.com/ws/v2/streams/:id","host":["https://api.arkm.com"],"path":["ws","v2","streams",":id"],"variable":[{"key":"id","value":"e561dd5b-a24d-4669-bbba-9e5cf37d5125","description":"Required. The streamId of the stream to delete, as returned by POST /ws/v2/streams. The numeric id from that response is not accepted here."}]},"description":"Deletes a WebSocket v2 stream. Any active connection using this stream will be disconnected.\n\n**Billing:** Free."},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"message\": \"stream deleted\"\n}"}],"_postman_id":"8643b328-d27a-4fa3-8f98-901021ddbef8"}],"id":"3b04c389-c763-421f-840d-d843fd98739b","_postman_id":"3b04c389-c763-421f-840d-d843fd98739b","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}}}],"id":"08bfaee7-1a3f-479b-864c-37e6dfd8e02f","description":"<p>Complete reference of all Arkham API endpoints organized by function.</p>\n<p>Every request is pre-filled with a working example value, so you can hit Send immediately.</p>\n<p>Folders mirror the endpoint groups in the API documentation sidebar.</p>\n","_postman_id":"08bfaee7-1a3f-479b-864c-37e6dfd8e02f","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]},"isInherited":true,"source":{"_postman_id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","id":"065a4b84-2cd4-49d5-94fe-d498a6a939d8","name":"Arkham API - Complete Collection","type":"collection"}}}],"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"API-Key"},{"key":"value","value":""}]}},"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["// Collection-level pre-request script","// Runs before every request","","// Check if API key is set. pm.variables resolves the collection variable","// and an environment override, so this works for either setup.","const apiKey = pm.variables.get('apiKey');","if (!apiKey || apiKey === 'YOUR_API_KEY_HERE') {","    console.error('ERROR: No API key set');","    console.log('Instructions:');","    console.log('   1. Open the Variables tab on this collection');","    console.log('   2. Paste your API key from https://arkm.com into apiKey');","    console.log('   3. Save');","}","","// Log request details","console.log('\\n' + '='.repeat(60));","console.log('Arkham API Request');","console.log('='.repeat(60));","console.log('Endpoint:', pm.request.url.toString());","console.log('Method:', pm.request.method);","console.log('Timestamp:', new Date().toISOString());","console.log('='.repeat(60) + '\\n');"]}},{"listen":"test","script":{"type":"text/javascript","exec":["// Collection-level test script","// Runs after every request","","// ========================================","// VARIABLE RESOLUTION VALIDATION","// ========================================","pm.test('No unresolved variables in URL', function() {","    const url = pm.request.url.toString();","    pm.expect(url).to.not.include('{{');","    pm.expect(url).to.not.include('}}');","    // Check for single-brace variables (should be double-brace)","    const singleBraceMatch = url.match(/\\{[^{][^}]*\\}/);","    pm.expect(singleBraceMatch).to.be.null;","});","","// ========================================","// STATUS CODE VALIDATION","// ========================================","","// Write operations against /user/ mutate your own account, so they are not","// asserted on here.","const requestUrl = pm.request.url.toString();","const isWriteOperation = pm.request.method === 'POST' || pm.request.method === 'PUT' || pm.request.method === 'DELETE';","const skipValidation = isWriteOperation && requestUrl.includes('/user/');","","if (!skipValidation) {","    pm.test('Response is not 404 (endpoint exists)', function() {","        pm.response.to.not.have.status(404);","    });","","    pm.test('Response is not 400 (valid parameters)', function() {","        pm.response.to.not.have.status(400);","    });","","    pm.test('Response is not 401 (authenticated)', function() {","        pm.response.to.not.have.status(401);","    });","} else {","    console.log('Skipping assertions - write operation to /user/');","}","","// ========================================","// RESPONSE CONTENT VALIDATION","// ========================================","if (pm.response.code === 200 || pm.response.code === 201) {","    const contentType = pm.response.headers.get('Content-Type') || '';","    ","    if (contentType.includes('application/json')) {","        pm.test('Response is valid JSON', function() {","            pm.response.to.be.json;","        });","        ","        pm.test('Response is not empty', function() {","            const json = pm.response.json();","            pm.expect(json).to.not.be.null;","            pm.expect(json).to.not.be.undefined;","            // Check it's not an empty object or array","            if (typeof json === 'object') {","                if (Array.isArray(json)) {","                    // Arrays can be empty but should exist","                    pm.expect(json).to.be.an('array');","                } else {","                    // Objects should have at least one key (unless it's a valid empty response)","                    pm.expect(Object.keys(json).length).to.be.greaterThan(0);","                }","            }","        });","        ","        // Endpoint-specific validation based on URL path","        const urlPath = pm.request.url.getPath();","        ","        // Only /intelligence/address/{address} and its /all variant return a top-level address (or chain-keyed object); batch, address_enriched, address_tags and addresses/updates return other shapes.","        if (urlPath.includes('/intelligence/address/') && !urlPath.includes('/intelligence/address/batch')) {","            pm.test('Intelligence response contains address data', function() {","                const json = pm.response.json();","                // /all endpoint returns object keyed by chain, regular endpoint returns {address: ...}","                if (urlPath.endsWith('/all')) {","                    pm.expect(json).to.be.an('object');","                    const chainKeys = Object.keys(json);","                    pm.expect(chainKeys.length).to.be.greaterThan(0);","                    // Each chain should have address data","                    chainKeys.forEach(chain => {","                        pm.expect(json[chain]).to.have.property('address');","                    });","                } else {","                    pm.expect(json).to.have.property('address');","                }","            });","        }","        ","        // Only /transfers and /transfers/unenriched return the { transfers: [...] } wrapper; /transfers/tx/{hash} returns a bare array and histograms return buckets.","        if (urlPath.endsWith('/transfers') || urlPath.endsWith('/transfers/unenriched')) {","            pm.test('Transfers response has valid structure', function() {","                const json = pm.response.json();","                pm.expect(json).to.have.property('transfers');","                // transfers can be array or null (if no results)","                if (json.transfers !== null) {","                    pm.expect(json.transfers).to.be.an('array');","                }","            });","        }","        ","        if (urlPath.includes('/portfolio/balances')) {","            pm.test('Balances response contains token data', function() {","                const json = pm.response.json();","                // Response should have tokens or be a valid balance structure","                const hasBalanceData = json.tokens || json.balances || json.holdings || Array.isArray(json);","                pm.expect(hasBalanceData).to.not.be.undefined;","            });","        }","        ","        if (urlPath.includes('/counterparties')) {","            pm.test('Counterparties response is object keyed by chain', function() {","                const json = pm.response.json();","                // Response is keyed by chain name (e.g., 'ethereum', 'polygon')","                pm.expect(json).to.be.an('object');","                const chainKeys = Object.keys(json);","                pm.expect(chainKeys.length).to.be.greaterThan(0);","                // Each chain key should have an array of counterparties","                chainKeys.forEach(chain => {","                    pm.expect(json[chain]).to.be.an('array');","                });","            });","        }","        ","        if (urlPath === '/chains') {","            pm.test('Chains response is an array of chains', function() {","                const json = pm.response.json();","                pm.expect(json).to.be.an('array');","                pm.expect(json.length).to.be.greaterThan(0);","            });","        }","    }","}","","// ========================================","// LOGGING & DIAGNOSTICS","// ========================================","","// Log variable resolution for debugging","console.log('=== VARIABLE CHECK ===');","console.log('baseUrl:', pm.variables.get('baseUrl'));","console.log('apiKey set:', pm.variables.get('apiKey') ? 'YES' : 'NO');","console.log('Request URL:', pm.request.url.toString());","","// Log intelligence label usage. Per-second rate limits are not exposed","// as response headers.","const intelUsage = pm.response.headers.get('X-Intel-Datapoints-Usage');","const intelLimit = pm.response.headers.get('X-Intel-Datapoints-Limit');","const intelRemaining = pm.response.headers.get('X-Intel-Datapoints-Remaining');","","if (intelUsage) {","    console.log('\\nIntelligence Datapoints:');","    console.log('   Used:', intelUsage);","    console.log('   Limit:', intelLimit);","    console.log('   Remaining:', intelRemaining);","}","","// Log response time","console.log('\\nResponse Time:', pm.response.responseTime + 'ms');","","// Check for errors and provide helpful messages","if (pm.response.code >= 400) {","    console.error('\\nRequest Failed');","    console.error('Status:', pm.response.code, pm.response.status);","    ","    try {","        const errorData = pm.response.json();","        console.error('Error:', JSON.stringify(errorData, null, 2));","        ","        if (pm.response.code === 401) {","            console.log('\\nSuggestion: Check your API key is correct');","        } else if (pm.response.code === 429) {","            console.log('\\nSuggestion: Rate limit exceeded. Wait before trying again.');","        } else if (pm.response.code === 404) {","            console.log('\\nSuggestion: Check address/entity exists and format is correct');","        } else if (pm.response.code === 400) {","            console.log('\\nSuggestion: Review request parameters');","        }","    } catch (e) {","        console.error('Response:', pm.response.text());","    }","    ","    console.log('\\nNeed help? https://arkm.com/api/docs');","} else {","    console.log('Request successful\\n');","}"]}}],"variable":[{"key":"baseUrl","value":"https://api.arkm.com","type":"string"},{"key":"apiKey","value":"","type":"string"}]}