Skip to main content

Exploring APIs in the Developer Portal

Use this page as the orientation hub for the portal browsing and testing flow.

What this page covers

  • Where to start after sign-in
  • Which page to use for each portal task
  • What success looks like before moving to implementation

When to use this page

Use this page when you are new to the portal or when onboarding a new consumer team.

Step-by-step path in the portal

  1. Sign in and pick profile
    • Start at Getting Access.
    • Complete magic-link sign-in and confirm the selected profile.
  2. Open dashboard and assigned collections
  3. Browse endpoint definitions
  4. Run requests in browser
  5. Export for integration

OpenAPI export

Every collection in the portal can be exported as an OpenAPI specification — available in two formats:

FormatBest for
OpenAPI 3.0Postman, Swagger UI, most code generators
OpenAPI 3.1Maximum schema expressiveness; use with tools that support the latest spec

Click Download OpenAPI on the collection detail page and select your preferred version.

What to verify

  • You can see only collections assigned to your client/profile.
  • Endpoint docs show required path/query/header/body fields.
  • Test calls return expected status and payload.
  • Exported OpenAPI/cURL output matches the tested endpoint.

Common confusion points

  • No collections visible: likely client/profile assignment issue.
  • Try it request fails with 401/403: check active profile and auth headers.
  • Wildcard routes look broad: use Wildcard Routing and Testing.

Next steps