{"info":{"_postman_id":"b2336b3d-d04a-4e2c-940f-a604791244cb","name":"ReputationStacker Public API v1.0.0","description":"<html><head></head><body><h1 id=\"reputationstacker-public-api-v100\">ReputationStacker Public API v1.0.0</h1>\n<p>Official public API documentation for ReputationStacker Public API v1.0.0 integrations.</p>\n<h2 id=\"getting-started\">Getting Started</h2>\n<ol>\n<li>Get your ReputationStacker API key from: <a href=\"https://app.reputationstacker.com/settings/api-keys\">https://app.reputationstacker.com/settings/api-keys</a></li>\n<li>Use the production API base URL: <code>https://api.reputationstacker.com</code></li>\n<li>Authenticate public API requests with:</li>\n</ol>\n<p><code>Authorization: Bearer </code></p>\n<h2 id=\"standard-success-response\">Standard Success Response</h2>\n<p>Every endpoint uses this response wrapper:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"success\": true,\n  \"data\": {\n    \"...\": \"endpoint-specific response data\"\n  }\n}\n</code></pre>\n<p>List endpoints also include pagination metadata:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"success\": true,\n  \"data\": {\n    \"...\": \"endpoint-specific response data\"\n  },\n  \"meta\": {\n    \"pagination\": {\n      \"current_page\": 1,\n      \"total_pages\": 3,\n      \"total_items\": 42,\n      \"per_page\": 50\n    }\n  }\n}\n</code></pre>\n<h2 id=\"standard-error-response\">Standard Error Response</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"success\": false,\n  \"error\": {\n    \"code\": \"NOT_FOUND\",\n    \"message\": \"Contact with ID 123 not found\",\n    \"details\": null\n  }\n}\n</code></pre>\n<p>Error codes:</p>\n<ul>\n<li><code>BAD_REQUEST</code> — 400</li>\n<li><code>UNAUTHORIZED</code> — 401</li>\n<li><code>INSUFFICIENT_CREDITS</code> — 402</li>\n<li><code>FORBIDDEN</code> — 403</li>\n<li><code>NOT_FOUND</code> — 404</li>\n<li><code>CONFLICT</code> — 409</li>\n<li><code>VALIDATION_ERROR</code> — 422</li>\n<li><code>RATE_LIMITED</code> — 429</li>\n<li><code>INTERNAL_ERROR</code> — 500</li>\n</ul>\n<h2 id=\"pagination\">Pagination</h2>\n<p>List endpoints support:</p>\n<p><code>?page=1&amp;per_page=50</code></p>\n<ul>\n<li>Default <code>per_page</code>: 50</li>\n<li>Maximum <code>per_page</code>: 100</li>\n<li>Values above 100 are automatically capped at 100</li>\n</ul>\n<h2 id=\"rate-limits\">Rate Limits</h2>\n<p>Rate limits are applied per API key.</p>\n<p>Default:</p>\n<ul>\n<li>100 requests per 60 seconds</li>\n</ul>\n<p>Typical endpoint-specific limits:</p>\n<ul>\n<li>Read endpoints (GET list/single): 120 requests per 60 seconds</li>\n<li>Write endpoints (POST/PUT/PATCH/DELETE): 30 requests per 60 seconds</li>\n<li>Stats endpoints: 60 requests per 60 seconds</li>\n<li>Contact creation: 60 requests per 60 seconds</li>\n</ul>\n<p>Rate-limit headers are returned on every request:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-text\">X-RateLimit-Limit: &lt;limit&gt;\nX-RateLimit-Remaining: &lt;remaining&gt;\nX-RateLimit-Reset: &lt;unix_timestamp&gt;\n</code></pre>\n<p>If the rate limit is exceeded, the API returns HTTP <code>429</code> and includes a <code>Retry-After</code> header containing the number of seconds before retrying.</p>\n<h2 id=\"contact-creation-and-review-campaigns\">Contact Creation and Review Campaigns</h2>\n<p>Creating a contact through the API only creates the contact record.</p>\n<p>Once a contact is added to ReputationStacker — whether manually, through Zapier, or through the API — the configured review request campaign starts for that contact.</p>\n<h2 id=\"stats-endpoints\">Stats Endpoints</h2>\n<p>Two stats endpoints are intentionally available:</p>\n<ul>\n<li><p><code>/api/v1/public-api/review-profiles/:id/stats</code></p>\n<ul>\n<li>Review quality statistics</li>\n<li>Review counts</li>\n<li>Average ratings</li>\n<li>Net Promoter Score (NPS)</li>\n</ul>\n</li>\n<li><p><code>/api/v1/public-api/reports/profiles/:id/stats</code></p>\n<ul>\n<li>Engagement statistics</li>\n<li>Invites sent</li>\n<li>Activity received</li>\n<li>Site-link clicks</li>\n</ul>\n</li>\n</ul>\n<p>Both endpoints may include overlapping first-party and third-party review counts.</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>All Public API endpoints require a ReputationStacker API key unless otherwise noted.</p>\n<p>Treat your API key like a password. Do not expose it in client-side code, public repositories, or screenshots.</p>\n<h2 id=\"identifiers-used-by-this-collection\">Identifiers Used by This Collection</h2>\n<p>Identifiers should be treated as <strong>UUID strings</strong>, not numbers.</p>\n<ul>\n<li><strong>Contacts:</strong> the <code>id</code> field contains the contact UUID. Use that value in <code>:id</code> routes.</li>\n<li><strong>Review Profiles:</strong> the <code>id</code> field contains the review profile UUID. Use that value in <code>:id</code> routes.</li>\n<li><strong>Users:</strong> the <code>id</code> field contains the user UUID. Use that value in <code>:id</code> routes.</li>\n<li><strong>Campaigns:</strong> <code>campaign_id</code> contains a UUID string.</li>\n<li><strong>Site Links:</strong> either the numeric ID or UUID is accepted for <code>site_link_id</code>.</li>\n</ul>\n<p>Some response fields have resource-specific names such as <code>contact_id</code> or <code>review_profile_id</code>; those values should also be treated as UUID strings where returned.</p>\n<p>Do not parse these identifier values as numbers.</p>\n<h2 id=\"health-endpoint\">Health Endpoint</h2>\n<p><code>GET /health</code> is public and does not require authentication.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"ReputationStacker Public API v1.0.0","slug":"reputationstacker-public-api-v100"}],"owner":"19655026","collectionId":"b2336b3d-d04a-4e2c-940f-a604791244cb","publishedId":"2sBYAsyCLP","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2026-08-25T22:11:56.000Z"},"item":[{"name":"Review Profiles","item":[{"name":"List Review Profiles","id":"3d60dcd9-b339-48c8-86ce-732e9888837f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.reputationstacker.com/api/v1/public-api/review-profiles?page=1&per_page=50","urlObject":{"path":["api","v1","public-api","review-profiles"],"host":["https://api.reputationstacker.com"],"query":[{"key":"page","value":"1"},{"key":"per_page","value":"50"}],"variable":[]}},"response":[{"id":"af2c1751-3050-481b-9968-de28b3a92d42","name":"Successful response","originalRequest":{"auth":{"type":"bearer","bearer":{"token":""}},"method":"GET","header":[],"url":"https://api.reputationstacker.com/api/v1/public-api/review-profiles"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"data\": {\n    \"review_profiles\": [\n      {\n        \"id\": \"550e8400-e29b-41d4-a716-446655440000\",\n        \"title\": \"Main Location\",\n        \"description\": \"\",\n        \"status\": \"active\",\n        \"created_at\": \"2026-08-25T14:00:00.000Z\",\n        \"updated_at\": \"2026-08-25T14:00:00.000Z\"\n      }\n    ],\n    \"count\": 1\n  },\n  \"meta\": {\n    \"pagination\": {\n      \"current_page\": 1,\n      \"total_pages\": 1,\n      \"total_items\": 1,\n      \"per_page\": 50\n    }\n  }\n}"}],"_postman_id":"3d60dcd9-b339-48c8-86ce-732e9888837f"},{"name":"Get Review Profile","id":"de08c5a6-bc51-48bf-9cd2-794504acfdaa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.reputationstacker.com/api/v1/public-api/review-profiles/550e8400-e29b-41d4-a716-446655440000","urlObject":{"path":["api","v1","public-api","review-profiles","550e8400-e29b-41d4-a716-446655440000"],"host":["https://api.reputationstacker.com"],"query":[],"variable":[]}},"response":[{"id":"2ca6eee1-3a4b-4487-9873-16e62aef3d62","name":"Successful response","originalRequest":{"auth":{"type":"bearer","bearer":{"token":""}},"method":"GET","header":[],"url":"https://api.reputationstacker.com/api/v1/public-api/review-profiles/550e8400-e29b-41d4-a716-446655440000"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"data\": {\n    \"review_profile\": {\n      \"id\": \"550e8400-e29b-41d4-a716-446655440000\",\n      \"title\": \"Main Location\",\n      \"description\": \"\",\n      \"status\": \"active\",\n      \"created_at\": \"2026-08-25T14:00:00.000Z\",\n      \"updated_at\": \"2026-08-25T14:00:00.000Z\"\n    }\n  }\n}"}],"_postman_id":"de08c5a6-bc51-48bf-9cd2-794504acfdaa"},{"name":"Create Review Profile","id":"66f2f512-f6c8-4c96-a776-a188028af936","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"Main Street Dental - Downtown\",\n  \"visible_to\": \"all\",\n  \"show_logo\": true,\n  \"rating_threshold\": 4\n}","options":{"raw":{"language":"json"}}},"url":"https://api.reputationstacker.com/api/v1/public-api/review-profiles","urlObject":{"path":["api","v1","public-api","review-profiles"],"host":["https://api.reputationstacker.com"],"query":[],"variable":[]}},"response":[{"id":"76e348a2-e22c-472f-bd23-acfa0a822fe8","name":"Successful response","originalRequest":{"auth":{"type":"bearer","bearer":{"token":""}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"Main Street Dental - Downtown\",\n  \"visible_to\": \"all\",\n  \"show_logo\": true,\n  \"rating_threshold\": 4\n}","options":{"raw":{"language":"json"}}},"url":"https://api.reputationstacker.com/api/v1/public-api/review-profiles"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"data\": {\n    \"id\": \"550e8400-e29b-41d4-a716-446655440000\",\n    \"campaign_id\": \"6ba7b810-9dad-11d1-80b4-00c04fd430c8\",\n    \"title\": \"Main Street Dental - Downtown\"\n  }\n}"}],"_postman_id":"66f2f512-f6c8-4c96-a776-a188028af936"},{"name":"Get Site Links","id":"c524cbc0-b4d5-4e05-bb0d-f0b8701fa320","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.reputationstacker.com/api/v1/public-api/review-profiles/550e8400-e29b-41d4-a716-446655440000/site-links?page=1&per_page=50","urlObject":{"path":["api","v1","public-api","review-profiles","550e8400-e29b-41d4-a716-446655440000","site-links"],"host":["https://api.reputationstacker.com"],"query":[{"key":"page","value":"1"},{"key":"per_page","value":"50"}],"variable":[]}},"response":[{"id":"b4c4f419-d41c-4998-8600-d00a8932e26a","name":"Successful response","originalRequest":{"auth":{"type":"bearer","bearer":{"token":""}},"method":"GET","header":[],"url":"https://api.reputationstacker.com/api/v1/public-api/review-profiles/550e8400-e29b-41d4-a716-446655440000/site-links"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"data\": {\n    \"site_links\": [\n      {\n        \"id\": \"9f8c1d4e-73d9-4c6f-91a3-2d77c3a5b890\",\n        \"review_site_type\": \"google\",\n        \"action_url\": \"https://g.page/r/...\",\n        \"position\": 1,\n        \"visible\": true,\n        \"custom_link_name\": \"\",\n        \"review_site_connection_type\": \"direct\"\n      }\n    ],\n    \"count\": 1\n  },\n  \"meta\": {\n    \"pagination\": {\n      \"current_page\": 1,\n      \"total_pages\": 1,\n      \"total_items\": 1,\n      \"per_page\": 50\n    }\n  }\n}"}],"_postman_id":"c524cbc0-b4d5-4e05-bb0d-f0b8701fa320"},{"name":"Get Site Link","id":"808e880f-1fcf-4da3-9f81-ece2e8279032","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.reputationstacker.com/api/v1/public-api/review-profiles/550e8400-e29b-41d4-a716-446655440000/site-links/9f8c1d4e-73d9-4c6f-91a3-2d77c3a5b890","urlObject":{"path":["api","v1","public-api","review-profiles","550e8400-e29b-41d4-a716-446655440000","site-links","9f8c1d4e-73d9-4c6f-91a3-2d77c3a5b890"],"host":["https://api.reputationstacker.com"],"query":[],"variable":[]}},"response":[{"id":"bc81caf8-db38-4da6-a47c-3eda767669b7","name":"Successful response","originalRequest":{"auth":{"type":"bearer","bearer":{"token":""}},"method":"GET","header":[],"url":"https://api.reputationstacker.com/api/v1/public-api/review-profiles/550e8400-e29b-41d4-a716-446655440000/site-links/9f8c1d4e-73d9-4c6f-91a3-2d77c3a5b890"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"data\": {\n    \"id\": \"9f8c1d4e-73d9-4c6f-91a3-2d77c3a5b890\",\n    \"review_site_type\": \"google\",\n    \"action_url\": \"https://g.page/r/...\",\n    \"position\": 1,\n    \"visible\": true,\n    \"custom_link_name\": \"\",\n    \"review_site_connection_type\": \"direct\"\n  }\n}"}],"_postman_id":"808e880f-1fcf-4da3-9f81-ece2e8279032"},{"name":"Create Site Link","id":"f6610156-121e-4336-9fab-202fe26c48e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"review_site_type\": \"google\",\n  \"action_url\": \"https://search.google.com/local/writereview?placeid=YOUR_GOOGLE_PLACE_ID\",\n  \"position\": 1,\n  \"visible\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://api.reputationstacker.com/api/v1/public-api/review-profiles/550e8400-e29b-41d4-a716-446655440000/site-links","urlObject":{"path":["api","v1","public-api","review-profiles","550e8400-e29b-41d4-a716-446655440000","site-links"],"host":["https://api.reputationstacker.com"],"query":[],"variable":[]}},"response":[{"id":"132ec606-2586-419b-925a-3332ed195bed","name":"Successful response","originalRequest":{"auth":{"type":"bearer","bearer":{"token":""}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"review_site_type\": \"google\",\n  \"action_url\": \"https://search.google.com/local/writereview?placeid=YOUR_GOOGLE_PLACE_ID\",\n  \"position\": 1,\n  \"visible\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://api.reputationstacker.com/api/v1/public-api/review-profiles/550e8400-e29b-41d4-a716-446655440000/site-links"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"data\": {\n    \"id\": \"9f8c1d4e-73d9-4c6f-91a3-2d77c3a5b890\",\n    \"review_site_type\": \"google\",\n    \"action_url\": \"https://g.page/r/...\",\n    \"position\": 1,\n    \"visible\": true\n  }\n}"}],"_postman_id":"f6610156-121e-4336-9fab-202fe26c48e8"},{"name":"Update Site Link","id":"5d826c93-6734-444c-b807-e635aad160f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"position\": 2,\n  \"visible\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://api.reputationstacker.com/api/v1/public-api/review-profiles/550e8400-e29b-41d4-a716-446655440000/site-links/9f8c1d4e-73d9-4c6f-91a3-2d77c3a5b890","urlObject":{"path":["api","v1","public-api","review-profiles","550e8400-e29b-41d4-a716-446655440000","site-links","9f8c1d4e-73d9-4c6f-91a3-2d77c3a5b890"],"host":["https://api.reputationstacker.com"],"query":[],"variable":[]}},"response":[{"id":"a78e66ce-1162-4836-b5de-50134615ffc4","name":"Successful response","originalRequest":{"auth":{"type":"bearer","bearer":{"token":""}},"method":"PUT","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"position\": 2,\n  \"visible\": true\n}","options":{"raw":{"language":"json"}}},"url":"https://api.reputationstacker.com/api/v1/public-api/review-profiles/550e8400-e29b-41d4-a716-446655440000/site-links/9f8c1d4e-73d9-4c6f-91a3-2d77c3a5b890"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"data\": {\n    \"message\": \"Site link updated successfully\",\n    \"id\": \"9f8c1d4e-73d9-4c6f-91a3-2d77c3a5b890\"\n  }\n}"}],"_postman_id":"5d826c93-6734-444c-b807-e635aad160f9"},{"name":"Delete Site Link","id":"0174e922-9237-489f-b9e1-33170c52df52","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"DELETE","header":[],"url":"https://api.reputationstacker.com/api/v1/public-api/review-profiles/550e8400-e29b-41d4-a716-446655440000/site-links/9f8c1d4e-73d9-4c6f-91a3-2d77c3a5b890","urlObject":{"path":["api","v1","public-api","review-profiles","550e8400-e29b-41d4-a716-446655440000","site-links","9f8c1d4e-73d9-4c6f-91a3-2d77c3a5b890"],"host":["https://api.reputationstacker.com"],"query":[],"variable":[]}},"response":[{"id":"2ffb8bd2-2333-4db1-9a9a-e77c58ad6ed0","name":"Successful response","originalRequest":{"auth":{"type":"bearer","bearer":{"token":""}},"method":"DELETE","header":[],"url":"https://api.reputationstacker.com/api/v1/public-api/review-profiles/550e8400-e29b-41d4-a716-446655440000/site-links/9f8c1d4e-73d9-4c6f-91a3-2d77c3a5b890"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"data\": {\n    \"message\": \"Site link deleted successfully\",\n    \"id\": \"9f8c1d4e-73d9-4c6f-91a3-2d77c3a5b890\"\n  }\n}"}],"_postman_id":"0174e922-9237-489f-b9e1-33170c52df52"},{"name":"Get Review Profile Stats","id":"ad0f9cd8-d6e9-4f8f-9384-34f675b7e9f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.reputationstacker.com/api/v1/public-api/review-profiles/550e8400-e29b-41d4-a716-446655440000/stats","urlObject":{"path":["api","v1","public-api","review-profiles","550e8400-e29b-41d4-a716-446655440000","stats"],"host":["https://api.reputationstacker.com"],"query":[],"variable":[]}},"response":[{"id":"5ecc9685-b7e9-4c1d-9989-2ec8e6e22e8d","name":"Successful response","originalRequest":{"auth":{"type":"bearer","bearer":{"token":""}},"method":"GET","header":[],"url":"https://api.reputationstacker.com/api/v1/public-api/review-profiles/550e8400-e29b-41d4-a716-446655440000/stats"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"data\": {\n    \"review_profile_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n    \"period\": {\n      \"start_date\": \"all_time\",\n      \"end_date\": \"2026-08-25\"\n    },\n    \"first_party_reviews\": {\n      \"count\": 40,\n      \"average_rating\": 4.7\n    },\n    \"third_party_reviews\": {\n      \"count\": 15,\n      \"average_rating\": 4.5\n    },\n    \"total_reviews\": 55,\n    \"average_rating\": 4.6,\n    \"net_promoter_score\": 72\n  }\n}"}],"_postman_id":"ad0f9cd8-d6e9-4f8f-9384-34f675b7e9f4"},{"name":"Delete Review Profile","id":"08c8089e-3a9c-42be-9b69-1d11d4eece3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"DELETE","header":[],"url":"https://api.reputationstacker.com/api/v1/public-api/review-profiles/550e8400-e29b-41d4-a716-446655440000","urlObject":{"path":["api","v1","public-api","review-profiles","550e8400-e29b-41d4-a716-446655440000"],"host":["https://api.reputationstacker.com"],"query":[],"variable":[]}},"response":[{"id":"4a1ec916-43a1-4ffc-9d15-86d5bba0d1d3","name":"Successful response","originalRequest":{"auth":{"type":"bearer","bearer":{"token":""}},"method":"DELETE","header":[],"url":"https://api.reputationstacker.com/api/v1/public-api/review-profiles/550e8400-e29b-41d4-a716-446655440000"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"data\": {\n    \"message\": \"Review profile deleted successfully\",\n    \"id\": \"550e8400-e29b-41d4-a716-446655440000\"\n  }\n}"}],"_postman_id":"08c8089e-3a9c-42be-9b69-1d11d4eece3b"}],"id":"8f0d07af-2a22-41bc-b1ab-6187d95e6b64","description":"<p>Manage review profiles and the review-site links associated with them.</p>\n","_postman_id":"8f0d07af-2a22-41bc-b1ab-6187d95e6b64"},{"name":"Contacts","item":[{"name":"Create Contact","id":"0bb8dde8-7cea-4067-b418-8f6de9c41502","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"review_profile_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n  \"contacts\": [\n    {\n      \"first_name\": \"Jane\",\n      \"last_name\": \"Smith\",\n      \"email\": \"jane@example.com\",\n      \"phone\": \"+15551234567\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.reputationstacker.com/api/v1/public-api/contacts","urlObject":{"path":["api","v1","public-api","contacts"],"host":["https://api.reputationstacker.com"],"query":[],"variable":[]}},"response":[{"id":"666921e5-f1da-49b2-9a75-7108c8d21ea6","name":"Successful response","originalRequest":{"auth":{"type":"bearer","bearer":{"token":""}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"review_profile_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n  \"contacts\": [\n    {\n      \"first_name\": \"Jane\",\n      \"last_name\": \"Smith\",\n      \"email\": \"jane@example.com\"\n    }\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.reputationstacker.com/api/v1/public-api/contacts"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"data\": {\n    \"contacts_created\": 1,\n    \"contacts\": [\n      {\n        \"id\": \"7d444840-9dc0-11d1-b245-5ffdce74fad2\",\n        \"first_name\": \"Jane\",\n        \"last_name\": \"Smith\",\n        \"email\": \"jane@example.com\",\n        \"phone\": \"+15551234567\",\n        \"review_profile_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n        \"created_at\": \"2026-08-25T14:00:00.000Z\"\n      }\n    ]\n  }\n}"}],"_postman_id":"0bb8dde8-7cea-4067-b418-8f6de9c41502"},{"name":"List Contacts","id":"2e622f90-bb2e-462b-95bd-7221ea5d4f29","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.reputationstacker.com/api/v1/public-api/contacts?page=1&per_page=50","urlObject":{"path":["api","v1","public-api","contacts"],"host":["https://api.reputationstacker.com"],"query":[{"key":"page","value":"1"},{"key":"per_page","value":"50"}],"variable":[]}},"response":[{"id":"919ffa8d-f49a-4298-b00f-2a7dd4f27335","name":"Successful response","originalRequest":{"auth":{"type":"bearer","bearer":{"token":""}},"method":"GET","header":[],"url":"https://api.reputationstacker.com/api/v1/public-api/contacts"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"data\": {\n    \"contacts\": [\n      {\n        \"id\": \"7d444840-9dc0-11d1-b245-5ffdce74fad2\",\n        \"name\": \"John Doe\",\n        \"first_name\": \"John\",\n        \"last_name\": \"Doe\",\n        \"email\": \"john@example.com\",\n        \"phone\": \"+15551234567\",\n        \"phone_country_code\": \"US\",\n        \"tags\": [\n          \"vip\"\n        ],\n        \"status\": \"active\",\n        \"created_at\": \"2026-08-25T14:00:00.000Z\",\n        \"updated_at\": \"2026-08-25T14:00:00.000Z\"\n      }\n    ]\n  },\n  \"meta\": {\n    \"pagination\": {\n      \"current_page\": 1,\n      \"total_pages\": 1,\n      \"total_items\": 1,\n      \"per_page\": 50\n    }\n  }\n}"}],"_postman_id":"2e622f90-bb2e-462b-95bd-7221ea5d4f29"},{"name":"Get Contact","id":"ef1ca629-1a59-4216-89e4-3209518fa7c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.reputationstacker.com/api/v1/public-api/contacts/7d444840-9dc0-11d1-b245-5ffdce74fad2","urlObject":{"path":["api","v1","public-api","contacts","7d444840-9dc0-11d1-b245-5ffdce74fad2"],"host":["https://api.reputationstacker.com"],"query":[],"variable":[]}},"response":[{"id":"44452126-6ad4-4a6a-8b25-97972b70b921","name":"Successful response","originalRequest":{"auth":{"type":"bearer","bearer":{"token":""}},"method":"GET","header":[],"url":"https://api.reputationstacker.com/api/v1/public-api/contacts/7d444840-9dc0-11d1-b245-5ffdce74fad2"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"data\": {\n    \"contact\": {\n      \"id\": \"7d444840-9dc0-11d1-b245-5ffdce74fad2\",\n      \"name\": \"John Doe\",\n      \"first_name\": \"John\",\n      \"last_name\": \"Doe\",\n      \"email\": \"john@example.com\",\n      \"phone\": \"+15551234567\",\n      \"phone_country_code\": \"US\",\n      \"tags\": [\n        \"vip\"\n      ],\n      \"status\": \"active\",\n      \"created_at\": \"2026-08-25T14:00:00.000Z\",\n      \"updated_at\": \"2026-08-25T14:00:00.000Z\"\n    }\n  }\n}"}],"_postman_id":"ef1ca629-1a59-4216-89e4-3209518fa7c1"},{"name":"Batch Delete Contacts","id":"4b54d75a-87e5-4b03-822e-62fa4a128507","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"contact_ids\": [\n    \"7d444840-9dc0-11d1-b245-5ffdce74fad2\",\n    \"0f8fad5b-d9cb-469f-a165-70867728950e\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.reputationstacker.com/api/v1/public-api/contacts","urlObject":{"path":["api","v1","public-api","contacts"],"host":["https://api.reputationstacker.com"],"query":[],"variable":[]}},"response":[{"id":"f4c2d4f2-8cfd-47d3-8e49-f61eef95c1ed","name":"Successful response","originalRequest":{"auth":{"type":"bearer","bearer":{"token":""}},"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"contact_ids\": [\n    \"CONTACT_ID_1\",\n    \"CONTACT_ID_2\"\n  ]\n}","options":{"raw":{"language":"json"}}},"url":"https://api.reputationstacker.com/api/v1/public-api/contacts"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"data\": {\n    \"deleted\": true,\n    \"count\": 2,\n    \"contact_ids\": [\n      \"7d444840-9dc0-11d1-b245-5ffdce74fad2\",\n      \"0f8fad5b-d9cb-469f-a165-70867728950e\"\n    ]\n  }\n}"}],"_postman_id":"4b54d75a-87e5-4b03-822e-62fa4a128507"},{"name":"Delete Contact","id":"ede2dce0-9375-44be-8c32-559ede0e3a77","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"DELETE","header":[],"url":"https://api.reputationstacker.com/api/v1/public-api/contacts/7d444840-9dc0-11d1-b245-5ffdce74fad2","urlObject":{"path":["api","v1","public-api","contacts","7d444840-9dc0-11d1-b245-5ffdce74fad2"],"host":["https://api.reputationstacker.com"],"query":[],"variable":[]}},"response":[{"id":"cbb79b8d-4f5a-4ffc-bb7b-580d00484fd8","name":"Successful response","originalRequest":{"auth":{"type":"bearer","bearer":{"token":""}},"method":"DELETE","header":[],"url":"https://api.reputationstacker.com/api/v1/public-api/contacts/7d444840-9dc0-11d1-b245-5ffdce74fad2"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"data\": {\n    \"deleted\": true,\n    \"contact_id\": \"7d444840-9dc0-11d1-b245-5ffdce74fad2\"\n  }\n}"}],"_postman_id":"ede2dce0-9375-44be-8c32-559ede0e3a77"}],"id":"1c549ce0-87d7-44e0-a0a2-4eda2c833af1","description":"<p>Create, retrieve, list, and delete contacts. Creating a contact only creates the contact record. Once the contact is added to ReputationStacker, the configured review request campaign begins for that contact.</p>\n","_postman_id":"1c549ce0-87d7-44e0-a0a2-4eda2c833af1"},{"name":"Reviews","item":[{"name":"List Reviews","id":"c0249c84-3629-4f21-97de-f4f7ea22b3d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.reputationstacker.com/api/v1/public-api/reviews?review_profile_id=550e8400-e29b-41d4-a716-446655440000&page=1&per_page=50","urlObject":{"path":["api","v1","public-api","reviews"],"host":["https://api.reputationstacker.com"],"query":[{"key":"review_profile_id","value":"550e8400-e29b-41d4-a716-446655440000"},{"key":"page","value":"1"},{"key":"per_page","value":"50"}],"variable":[]}},"response":[{"id":"7e17a077-f8a3-4ea5-aa81-95d8d9cc0a43","name":"Successful response","originalRequest":{"auth":{"type":"bearer","bearer":{"token":""}},"method":"GET","header":[],"url":{"raw":"https://api.reputationstacker.com/api/v1/public-api/reviews?review_profile_id=550e8400-e29b-41d4-a716-446655440000","host":["https://api.reputationstacker.com"],"path":["api","v1","public-api","reviews"],"query":[{"key":"review_profile_id","value":"550e8400-e29b-41d4-a716-446655440000"}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"data\": {\n    \"reviews\": [\n      {\n        \"id\": \"a3bb189e-8bf9-3888-9912-ace4e6543002\",\n        \"rating\": 5,\n        \"review_text\": \"Great service!\",\n        \"reviewer_name\": \"Jane Smith\",\n        \"reviewer_email\": \"jane@example.com\",\n        \"review_site\": \"google\",\n        \"source\": \"google\",\n        \"date_posted\": \"2026-08-25T14:00:00.000Z\",\n        \"review_profile_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n        \"is_responded\": false,\n        \"created_at\": \"2026-08-25T14:00:00.000Z\",\n        \"updated_at\": \"2026-08-25T14:00:00.000Z\"\n      }\n    ]\n  },\n  \"meta\": {\n    \"pagination\": {\n      \"current_page\": 1,\n      \"total_pages\": 1,\n      \"total_items\": 1,\n      \"per_page\": 50\n    }\n  }\n}"}],"_postman_id":"c0249c84-3629-4f21-97de-f4f7ea22b3d7"}],"id":"ec83fbe8-7ad5-46ac-aa0d-4ddd19ac2e57","description":"<p>Retrieve reviews associated with a review profile.</p>\n","_postman_id":"ec83fbe8-7ad5-46ac-aa0d-4ddd19ac2e57"},{"name":"Users","item":[{"name":"List Users","id":"4dccbea4-df11-49bf-a1fd-06998adfce6b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.reputationstacker.com/api/v1/public-api/users?page=1&per_page=50","urlObject":{"path":["api","v1","public-api","users"],"host":["https://api.reputationstacker.com"],"query":[{"key":"page","value":"1"},{"key":"per_page","value":"50"}],"variable":[]}},"response":[{"id":"3f9e53b6-1cf4-4e9c-8ba5-080b82e1e817","name":"Successful response","originalRequest":{"auth":{"type":"bearer","bearer":{"token":""}},"method":"GET","header":[],"url":"https://api.reputationstacker.com/api/v1/public-api/users"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"data\": {\n    \"users\": [\n      {\n        \"id\": \"123e4567-e89b-12d3-a456-426614174000\",\n        \"first_name\": \"Jane\",\n        \"last_name\": \"Smith\",\n        \"email\": \"jane@company.com\",\n        \"status\": \"1\",\n        \"created_at\": \"2026-08-25T14:00:00.000Z\"\n      }\n    ]\n  },\n  \"meta\": {\n    \"pagination\": {\n      \"current_page\": 1,\n      \"total_pages\": 1,\n      \"total_items\": 1,\n      \"per_page\": 50\n    }\n  }\n}"}],"_postman_id":"4dccbea4-df11-49bf-a1fd-06998adfce6b"},{"name":"Get User","id":"b4e55475-d536-413b-bdc1-cb1fda55fade","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.reputationstacker.com/api/v1/public-api/users/123e4567-e89b-12d3-a456-426614174000","urlObject":{"path":["api","v1","public-api","users","123e4567-e89b-12d3-a456-426614174000"],"host":["https://api.reputationstacker.com"],"query":[],"variable":[]}},"response":[{"id":"8281b559-657d-4dc0-8c19-c8d02de185bf","name":"Successful response","originalRequest":{"auth":{"type":"bearer","bearer":{"token":""}},"method":"GET","header":[],"url":"https://api.reputationstacker.com/api/v1/public-api/users/123e4567-e89b-12d3-a456-426614174000"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"data\": {\n    \"id\": \"123e4567-e89b-12d3-a456-426614174000\",\n    \"first_name\": \"Jane\",\n    \"last_name\": \"Smith\",\n    \"email\": \"jane@company.com\",\n    \"status\": \"1\",\n    \"created_at\": \"2026-08-25T14:00:00.000Z\",\n    \"timezone\": \"America/New_York\",\n    \"updated_at\": \"2026-08-25T14:00:00.000Z\"\n  }\n}"}],"_postman_id":"b4e55475-d536-413b-bdc1-cb1fda55fade"},{"name":"Create User","id":"ddde5671-d10b-4f47-b6bf-5995ece25db1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"first_name\": \"Alex\",\n  \"last_name\": \"Morgan\",\n  \"email\": \"alex@example.com\",\n  \"timezone\": \"America/New_York\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.reputationstacker.com/api/v1/public-api/users","urlObject":{"path":["api","v1","public-api","users"],"host":["https://api.reputationstacker.com"],"query":[],"variable":[]}},"response":[{"id":"891fc66c-de17-4a2d-95c5-9d00b99cae4a","name":"Successful response","originalRequest":{"auth":{"type":"bearer","bearer":{"token":""}},"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"first_name\": \"Alex\",\n  \"last_name\": \"Morgan\",\n  \"email\": \"alex@example.com\",\n  \"timezone\": \"America/New_York\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.reputationstacker.com/api/v1/public-api/users"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"data\": {\n    \"id\": \"123e4567-e89b-12d3-a456-426614174000\",\n    \"first_name\": \"Alex\",\n    \"last_name\": \"Morgan\",\n    \"email\": \"alex@example.com\",\n    \"status\": \"1\",\n    \"created_at\": \"2026-08-25T14:00:00.000Z\"\n  }\n}"}],"_postman_id":"ddde5671-d10b-4f47-b6bf-5995ece25db1"},{"name":"Update User","id":"edf7a436-1123-4cf9-8f05-5a6b12db306d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"first_name\": \"Alexandra\",\n  \"last_name\": \"Morgan\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.reputationstacker.com/api/v1/public-api/users/123e4567-e89b-12d3-a456-426614174000","urlObject":{"path":["api","v1","public-api","users","123e4567-e89b-12d3-a456-426614174000"],"host":["https://api.reputationstacker.com"],"query":[],"variable":[]}},"response":[{"id":"f8c08baf-2f51-4f10-8b0e-9fd910019396","name":"Successful response","originalRequest":{"auth":{"type":"bearer","bearer":{"token":""}},"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n  \"first_name\": \"Alexandra\",\n  \"last_name\": \"Morgan\"\n}","options":{"raw":{"language":"json"}}},"url":"https://api.reputationstacker.com/api/v1/public-api/users/123e4567-e89b-12d3-a456-426614174000"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"data\": {\n    \"id\": \"123e4567-e89b-12d3-a456-426614174000\",\n    \"first_name\": \"Alexandra\",\n    \"last_name\": \"Morgan\",\n    \"email\": \"alex@example.com\",\n    \"status\": \"1\",\n    \"updated_at\": \"2026-08-25T14:00:00.000Z\"\n  }\n}"}],"_postman_id":"edf7a436-1123-4cf9-8f05-5a6b12db306d"},{"name":"Delete User","id":"d2f1739f-b3ce-4472-8c54-7815a345f94f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"DELETE","header":[],"url":"https://api.reputationstacker.com/api/v1/public-api/users/123e4567-e89b-12d3-a456-426614174000","urlObject":{"path":["api","v1","public-api","users","123e4567-e89b-12d3-a456-426614174000"],"host":["https://api.reputationstacker.com"],"query":[],"variable":[]}},"response":[{"id":"d01a9632-fc42-4567-a654-e8b33c3573fd","name":"Successful response","originalRequest":{"auth":{"type":"bearer","bearer":{"token":""}},"method":"DELETE","header":[],"url":"https://api.reputationstacker.com/api/v1/public-api/users/123e4567-e89b-12d3-a456-426614174000"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"data\": {\n    \"message\": \"User deleted successfully\",\n    \"id\": \"123e4567-e89b-12d3-a456-426614174000\"\n  }\n}"}],"_postman_id":"d2f1739f-b3ce-4472-8c54-7815a345f94f"}],"id":"1272617b-08ca-4d04-a101-34197525fd13","description":"<p>Create, retrieve, update, list, and delete ReputationStacker users.</p>\n","_postman_id":"1272617b-08ca-4d04-a101-34197525fd13"},{"name":"Reports","item":[{"name":"Get Profiles Stats","id":"b1e2fddb-b472-4c6f-9fc7-37c79c860f07","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.reputationstacker.com/api/v1/public-api/reports/profiles-stats?page=1&per_page=50","urlObject":{"path":["api","v1","public-api","reports","profiles-stats"],"host":["https://api.reputationstacker.com"],"query":[{"key":"page","value":"1"},{"key":"per_page","value":"50"}],"variable":[]}},"response":[{"id":"ff0d0f11-8a4e-4f08-89b5-f101009fb53d","name":"Successful response","originalRequest":{"auth":{"type":"bearer","bearer":{"token":""}},"method":"GET","header":[],"url":"https://api.reputationstacker.com/api/v1/public-api/reports/profiles-stats"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"data\": {\n    \"profiles\": [\n      {\n        \"id\": \"550e8400-e29b-41d4-a716-446655440000\",\n        \"title\": \"Main Location\",\n        \"contact_invited\": 200,\n        \"activity_receiving\": 180,\n        \"first_party_reviews\": 40,\n        \"first_party_avg_rating\": 4.7,\n        \"third_party_reviews\": 15,\n        \"third_party_avg_rating\": 4.5\n      }\n    ],\n    \"total\": 1\n  },\n  \"meta\": {\n    \"pagination\": {\n      \"current_page\": 1,\n      \"total_pages\": 1,\n      \"total_items\": 1,\n      \"per_page\": 50\n    }\n  }\n}"}],"_postman_id":"b1e2fddb-b472-4c6f-9fc7-37c79c860f07"},{"name":"Get Profile Report Stats","id":"28d41ce0-c155-4c2d-ac37-66ed6caa33d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[],"url":"https://api.reputationstacker.com/api/v1/public-api/reports/profiles/550e8400-e29b-41d4-a716-446655440000/stats","urlObject":{"path":["api","v1","public-api","reports","profiles","550e8400-e29b-41d4-a716-446655440000","stats"],"host":["https://api.reputationstacker.com"],"query":[],"variable":[]}},"response":[{"id":"6245d4d0-7dc5-4b69-a9fe-6b3158607f16","name":"Successful response","originalRequest":{"auth":{"type":"bearer","bearer":{"token":""}},"method":"GET","header":[],"url":"https://api.reputationstacker.com/api/v1/public-api/reports/profiles/550e8400-e29b-41d4-a716-446655440000/stats"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"data\": {\n    \"review_profile_id\": \"550e8400-e29b-41d4-a716-446655440000\",\n    \"title\": \"Main Location\",\n    \"period\": {\n      \"start_date\": \"all_time\",\n      \"end_date\": \"2026-08-25\"\n    },\n    \"contact_invited\": 200,\n    \"activity_receiving\": 180,\n    \"first_party_reviews\": {\n      \"count\": 40,\n      \"average_rating\": 4.7\n    },\n    \"third_party_reviews\": {\n      \"count\": 15,\n      \"average_rating\": 4.5\n    },\n    \"site_link_clicks\": 62\n  }\n}"}],"_postman_id":"28d41ce0-c155-4c2d-ac37-66ed6caa33d9"}],"id":"6b96adaa-1347-4b93-b474-70ed48f1500b","description":"<p>Retrieve review-profile statistics and reporting data.</p>\n","_postman_id":"6b96adaa-1347-4b93-b474-70ed48f1500b"},{"name":"Health","item":[{"name":"Health Check","id":"1b2f991e-e94c-4827-96a4-b6df27573882","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.reputationstacker.com/health","urlObject":{"path":["health"],"host":["https://api.reputationstacker.com"],"query":[],"variable":[]}},"response":[{"id":"6b7e359d-fbbd-44a3-af21-ed1f7145d40b","name":"Successful response","originalRequest":{"method":"GET","header":[],"url":"https://api.reputationstacker.com/health"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"success\": true,\n  \"data\": {\n    \"status\": \"OK\",\n    \"timestamp\": \"2026-08-25T14:00:00.000Z\",\n    \"version\": \"1.0.0\",\n    \"environment\": \"production\",\n    \"uptime_seconds\": 86400,\n    \"services\": {\n      \"database\": \"connected\",\n      \"grpc\": \"connected\",\n      \"cache\": \"available\"\n    }\n  }\n}"}],"_postman_id":"1b2f991e-e94c-4827-96a4-b6df27573882"}],"id":"57e22889-2ea2-4abb-94e7-d43c2823567f","description":"<p>Check ReputationStacker API service availability. Authentication is not required for the health endpoint.</p>\n","_postman_id":"57e22889-2ea2-4abb-94e7-d43c2823567f"}],"variable":[{"key":"base_url","value":"https://api.reputationstacker.com","description":"Production ReputationStacker Public API base URL."},{"key":"api_key","value":"","description":"Your ReputationStacker API key. Keep this secret."},{"key":"review_profile_id","value":"550e8400-e29b-41d4-a716-446655440000","description":"Review Profile UUID string used in single-record routes."},{"key":"user_id","value":"123e4567-e89b-12d3-a456-426614174000","description":"User UUID string. User endpoints return this UUID in the `id` field."},{"key":"site_link_id","value":"9f8c1d4e-73d9-4c6f-91a3-2d77c3a5b890","description":"Site-link identifier. Either numeric ID or UUID is accepted."},{"key":"contact_id","value":"7d444840-9dc0-11d1-b245-5ffdce74fad2","description":"Contact UUID string used in single-record routes."}]}