Introduction

The Addepar API Explorer is the complete interactive reference for the V1 REST API. Every endpoint listed here is available to your firm — select an endpoint, fill in parameters, and execute live requests directly from this page.


Quick Start

StepAction
1Get your API key from Settings > API Keys in the Addepar platform
2Choose your environment from the server dropdown above any endpoint
3Enter your Addepar-Firm header value (your firm ID)
4Click Try It to execute the request

Environments

EnvironmentBase URLUse Case
Productionhttps://{firm}.addepar.com/api/v1Live client data
Developmenthttps://{firm}.clientdev.addepar.com/api/v1Testing & integration work
Premier Sandboxhttps://{firm}.sandbox.addepar.com/api/v1Isolated test environment

Replace {firm} with your firm's subdomain.


Authentication

All requests require two things:

  1. API Key — passed as a Bearer token in the Authorization header
  2. Addepar-Firm — your firm identifier, passed as a request header on every call
curl -X GET "https://examplefirm.addepar.com/api/v1/entities" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Addepar-Firm: YOUR_FIRM_ID" \
  -H "Accept: application/vnd.api+json"

For full details, see Access & Authentication.


Request & Response Format

The Addepar API follows the JSON:API specification:

  • Content-Type: application/vnd.api+json
  • Resources are wrapped in a data object with type, id, and attributes
  • Relationships are expressed via relationships and linkage objects
  • Pagination uses cursor-based page[cursor] and page[limit] query parameters

What's Covered

This reference covers 384 endpoints across 48 resource areas:

DomainResources
OwnershipEntities, Entity Types, Groups, Group Types, Positions, External ID Types
People & AccessUsers, Roles, Teams, Contacts, Personas
FinancialsTransactions, Transaction Jobs, Jobs, Portfolio, Snapshots
AttributesAttributes, Arguments, Constituent Attributes
BenchmarksBenchmarks, Associations, Compositions, Proxies, Imported Data
PricingPricing Sources, Pricing Datasets, Estimated Returns, Derivatives
BillingBillable Portfolios, Fee Schedules, Fees, Payout Recipients & Rules
AllocationsAllocation Models, Allocation Templates
ReportingGenerated Reports, Report Generation, Report Schedule, Reports
Data ManagementFiles, Archived Files, Imports, Import Results, Data Timelines, Transaction Datasets
AdminAudit Trail, View Sets, Portal, API Version

Guides & Resources