Mireye Users API

The Users API from Mireye — 5 operation(s) for users.

Operations 7

GET /v1/users/me Me #
PATCH /v1/users/me Update Profile #
PATCH /v1/users/me/settings Update Settings #
GET /v1/users/me/tokens List Tokens #
POST /v1/users/me/tokens Create Token #
DELETE /v1/users/me/tokens/{token_id} Revoke Token #
POST /v1/users/me/tokens/{token_id}/reveal Reveal Token #

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/mireye-users-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

mireye-users-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Mireye Earth Ask Users API
  description: Provenance-tagged geospatial data for US coordinates. POST /v1/fetch for deterministic field values; POST /v1/ask for natural-language Q&A; GET /v1/meta/fields for the catalog.
  version: 0.14.0
servers:
- url: https://api.mireye.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Users
paths:
  /v1/users/me:
    get:
      summary: Me
      operationId: me_v1_users_me_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties: true
                type: object
                title: Response Me V1 Users Me Get
      tags:
      - Users
    patch:
      summary: Update Profile
      operationId: update_profile_v1_users_me_patch
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProfilePatch'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties: true
                type: object
                title: Response Update Profile V1 Users Me Patch
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      tags:
      - Users
  /v1/users/me/settings:
    patch:
      summary: Update Settings
      operationId: update_settings_v1_users_me_settings_patch
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SettingsPatch'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties: true
                type: object
                title: Response Update Settings V1 Users Me Settings Patch
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      tags:
      - Users
  /v1/users/me/tokens:
    get:
      summary: List Tokens
      operationId: list_tokens_v1_users_me_tokens_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties: true
                type: object
                title: Response List Tokens V1 Users Me Tokens Get
      tags:
      - Users
    post:
      summary: Create Token
      operationId: create_token_v1_users_me_tokens_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateTokenRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                additionalProperties: true
                type: object
                title: Response Create Token V1 Users Me Tokens Post
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      tags:
      - Users
  /v1/users/me/tokens/{token_id}:
    delete:
      summary: Revoke Token
      operationId: revoke_token_v1_users_me_tokens__token_id__delete
      parameters:
      - name: token_id
        in: path
        required: true
        schema:
          type: string
          title: Token Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: Response Revoke Token V1 Users Me Tokens  Token Id  Delete
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      tags:
      - Users
  /v1/users/me/tokens/{token_id}/reveal:
    post:
      summary: Reveal Token
      operationId: reveal_token_v1_users_me_tokens__token_id__reveal_post
      parameters:
      - name: token_id
        in: path
        required: true
        schema:
          type: string
          title: Token Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: Response Reveal Token V1 Users Me Tokens  Token Id  Reveal Post
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      tags:
      - Users
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    CreateTokenRequest:
      properties:
        name:
          type: string
          maxLength: 80
          minLength: 1
          title: Name
      type: object
      required:
      - name
      title: CreateTokenRequest
    ProfilePatch:
      properties:
        organization:
          anyOf:
          - type: string
            maxLength: 200
          - type: 'null'
          title: Organization
      additionalProperties: false
      type: object
      title: ProfilePatch
    SettingsPatch:
      properties:
        default_lat:
          anyOf:
          - type: number
          - type: 'null'
          title: Default Lat
        default_lng:
          anyOf:
          - type: number
          - type: 'null'
          title: Default Lng
        default_question:
          anyOf:
          - type: string
            maxLength: 2000
          - type: 'null'
          title: Default Question
        email_updates_opt_in:
          anyOf:
          - type: boolean
          - type: 'null'
          title: Email Updates Opt In
      additionalProperties: false
      type: object
      title: SettingsPatch
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError