Outdoorsy Auth API

The auth API from Outdoorsy — 7 operation(s) for auth.

Operations 7

POST /auth/creds/create Register a new user given a name and email address. #
POST /auth/creds/forgot #
POST /auth/creds/login #
POST /auth/creds/resend #
POST /auth/dealers/create Register a new self-serve dealer account. #
GET /auth/{provider}/callback Redirect endpoint after performing oauth flow with facebook, google, apple. #
GET /auth/{provider}/login Entry point for starting oauth flow with specified provider. #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/outdoorsy-auth-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

outdoorsy-auth-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Outdoorsy Auth API
  version: 0.0.1
  description: 'Operations tagged auth across 2 of this provider''s published API definitions: outdoorsy-auth-api-openapi.yml, outdoorsy-openapi-original.json. Each path carries the servers of the definition it was published in.'
servers:
- url: /v0
security:
- Bearer:
  - '[]'
- API-Key:
  - '[]'
tags:
- name: auth
paths:
  /auth/creds/create:
    post:
      description: If no password is provided then user is considered a guest.
      tags:
      - auth
      summary: Register a new user given a name and email address.
      operationId: authCredsCreate
      responses:
        '200':
          $ref: '#/components/responses/authCreateResponse'
        '400':
          $ref: '#/components/responses/badRequestError'
        default:
          $ref: '#/components/responses/genericError'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UserCreateRequest'
    servers:
    - url: /v0
  /auth/creds/forgot:
    post:
      description: Sends email to registered email with password reset instructions
      tags:
      - auth
      operationId: authCredsForget
      responses:
        '204':
          $ref: '#/components/responses/noContentResponse'
        '400':
          $ref: '#/components/responses/badRequestError'
        '401':
          $ref: '#/components/responses/unauthorizedError'
        '404':
          $ref: '#/components/responses/notFoundError'
        default:
          $ref: '#/components/responses/genericError'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PasswordForgotRequest'
    servers:
    - url: /v0
  /auth/creds/login:
    post:
      tags:
      - auth
      operationId: authCredsLogin
      responses:
        '200':
          $ref: '#/components/responses/userAuthResponse'
        '401':
          $ref: '#/components/responses/unauthorizedError'
        '404':
          $ref: '#/components/responses/notFoundError'
        default:
          $ref: '#/components/responses/genericError'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UserLoginRequest'
    servers:
    - url: /v0
  /auth/creds/resend:
    post:
      description: Resends password reset email
      tags:
      - auth
      operationId: authCredsResend
      responses:
        '200':
          $ref: '#/components/responses/noContentResponse'
        '401':
          $ref: '#/components/responses/unauthorizedError'
        '404':
          $ref: '#/components/responses/notFoundError'
        default:
          $ref: '#/components/responses/genericError'
    servers:
    - url: /v0
  /auth/dealers/create:
    post:
      description: 'Creates a dealer account for unauthenticated users through the self-serve signup flow.

        The dealer will need to complete email verification and subscription payment before

        gaining full access to Wheelbase.'
      tags:
      - auth
      summary: Register a new self-serve dealer account.
      operationId: authDealersSelfServeCreate
      responses:
        '201':
          $ref: '#/components/responses/userAuthResponse'
        '400':
          $ref: '#/components/responses/badRequestError'
        default:
          $ref: '#/components/responses/genericError'
    servers:
    - url: /v0
  /auth/{provider}/callback:
    get:
      tags:
      - auth
      summary: Redirect endpoint after performing oauth flow with facebook, google, apple.
      operationId: oauthCallback
      parameters:
      - name: provider
        in: path
        required: true
        schema:
          type: string
          enum:
          - google
          - facebook
          - apple
      responses: {}
    servers:
    - url: /v0
  /auth/{provider}/login:
    get:
      description: Redirects to respective identity provider.
      tags:
      - auth
      summary: Entry point for starting oauth flow with specified provider.
      operationId: oauthLogin
      parameters:
      - name: provider
        in: path
        required: true
        schema:
          type: string
          enum:
          - google
          - facebook
      responses:
        '200':
          description: OK
    servers:
    - url: /v0
components:
  schemas:
    PasswordForgotRequest:
      type: object
      properties:
        email:
          type: string
          x-go-name: Email
      x-go-package: github.com/outdoorsy/api/types
    UserAuthResponse:
      type: object
      properties:
        account_id:
          type: string
          x-go-name: AccountID
        email:
          type: string
          x-go-name: Email
        first_name:
          type: string
          x-go-name: FirstName
        last_name:
          type: string
          x-go-name: LastName
        phone:
          type: string
          x-go-name: Phone
        preferred_2fa_method:
          type: string
          x-go-name: Preferred2FAMethod
        refresh_token:
          type: string
          x-go-name: RefreshToken
        roles:
          type: array
          items:
            type: string
          x-go-name: Roles
        session_id_2fa:
          type: string
          x-go-name: SessionID2FA
        show_2fa_screen:
          type: boolean
          x-go-name: Show2FAScreen
        show_verify_email_screen:
          type: boolean
          x-go-name: ShowVerifyEmailScreen
        token:
          type: string
          x-go-name: Token
        user_id:
          type: integer
          format: int64
          x-go-name: ID
        verifications:
          $ref: '#/components/schemas/VerificationStatus'
      x-go-package: github.com/outdoorsy/api/types
    UserCreateRequest:
      description: authentication
      type: object
      properties:
        campaign:
          type: string
          x-go-name: Campaign
        content:
          type: string
          x-go-name: Content
        country:
          type: string
          x-go-name: Country
        email:
          type: string
          x-go-name: Email
        enable_sms:
          type: boolean
          x-go-name: EnableSms
        first_name:
          type: string
          x-go-name: FirstName
        intent:
          type: string
          x-go-name: Intent
        last_name:
          type: string
          x-go-name: LastName
        locale:
          type: string
          x-go-name: Locale
        medium:
          type: string
          x-go-name: Medium
        password:
          $ref: '#/components/schemas/String'
        password_validation_user_inputs:
          type: array
          items:
            type: string
          x-go-name: PasswordValidationUserInputs
        phone:
          type: string
          x-go-name: Phone
        recaptcha_response:
          type: string
          x-go-name: RecaptchaResponse
        referral_code:
          type: string
          x-go-name: ReferralCode
        signup_source:
          type: string
          x-go-name: SignupSource
        with_refresh_token:
          description: 'Used mainly for mobile clients to provide some backward

            compatibility for them to work with access tokens only.

            Will be removed when mobile adoption rate hits certain percentage'
          type: boolean
          x-go-name: WithRefreshToken
      x-go-package: github.com/outdoorsy/api/types
    VerificationStatus:
      type: object
      properties:
        email:
          type: boolean
          x-go-name: Email
        phone:
          type: boolean
          x-go-name: Phone
      x-go-package: github.com/outdoorsy/api/types
    UserLoginRequest:
      type: object
      properties:
        account_id:
          type: string
          x-go-name: AccountID
        biometric_id:
          type: string
          x-go-name: BiometricID
        dealer_user:
          type: boolean
          x-go-name: DealerUser
        email:
          type: string
          x-go-name: Email
        password:
          $ref: '#/components/schemas/String'
        recaptcha_response:
          type: string
          x-go-name: RecaptchaResponse
        with_refresh_token:
          description: 'Used mainly for mobile clients to provide some backward

            compatibility for them to work with access tokens only.

            Will be removed when mobile adoption rate hits certain percentage'
          type: boolean
          x-go-name: WithRefreshToken
      x-go-package: github.com/outdoorsy/api/types
    String:
      type: string
      x-go-package: github.com/outdoorsy/api/utils/password
  responses:
    badRequestError:
      description: Invalid input or state means you're bad
      headers:
        Error:
          schema:
            type: string
    userAuthResponse:
      description: HTTP status code 200 and user model
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/UserAuthResponse'
    genericError:
      description: An unknown, unexpected error.
    unauthorizedError:
      description: Unauthorized error
    noContentResponse:
      description: Everything went as planned
    authCreateResponse:
      description: HTTP status code 200 and user model
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/UserAuthResponse'
    notFoundError:
      description: Not found error
  securitySchemes:
    API-Key:
      type: apiKey
      name: API-Key
      in: header
    Bearer:
      type: apiKey
      name: Authorization
      in: header
x-refined-from:
- outdoorsy-auth-api-openapi.yml
- outdoorsy-openapi-original.json